-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (52 loc) · 1.52 KB
/
Copy pathCargo.toml
File metadata and controls
61 lines (52 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "fastcomments-sdk"
version = "3.0.0"
authors = ["FastComments <support@fastcomments.com>"]
description = "Official FastComments Rust SDK (Typed API Client & Utilities)"
license = "MIT"
edition = "2021"
repository = "https://github.com/fastcomments/fastcomments-rust"
homepage = "https://fastcomments.com"
keywords = ["fastcomments", "comments", "commenting-system", "api", "sdk"]
categories = ["api-bindings", "web-programming"]
include = [
"src/**/*",
"sso/**/*",
"client/src/**/*",
"client/Cargo.toml",
"examples/**/*",
"tests/**/*",
"Cargo.toml",
"LICENSE",
"README.md",
]
[dependencies]
# Serialization
serde = { version = "^1.0", features = ["derive"] }
serde_with = { version = "^3.8", default-features = false, features = ["base64", "std", "macros"] }
serde_json = "^1.0"
serde_repr = "^0.1"
# Date/time (required by generated models with date-time fields)
chrono = { version = "^0.4", features = ["serde"] }
# HTTP client
reqwest = { version = "^0.12", features = ["json", "multipart", "stream"] }
url = "^2.5"
uuid = { version = "^1.8", features = ["serde", "v4"] }
# SSO/Crypto
base64 = "0.22.1"
hmac = "0.12.1"
sha2 = "0.10.8"
# Async runtime
tokio = { version = "1.44.1", features = ["macros", "rt-multi-thread", "fs"] }
tokio-util = { version = "^0.7", features = ["codec"] }
[dev-dependencies]
tokio-test = "0.4"
[lib]
name = "fastcomments_sdk"
path = "src/lib.rs"
[[example]]
name = "secure"
path = "examples/secure.rs"
[[example]]
name = "simple"
path = "examples/simple.rs"