-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
35 lines (32 loc) · 1.11 KB
/
Cargo.toml
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
[package]
name = "ceramic-http-client"
version = "0.1.0"
edition = "2021"
authors = [
"Nathaniel Cook <nvcook42@gmail.com>",
"Danny Browning <dbrowning@3box.io>",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/3box/rust-ceramic-http-client"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
ceramic-event = { git = "https://github.com/ceramicnetwork/rust-ceramic", branch = "main" }
json-patch = { version = "2.0.0", features = ["diff"] }
once_cell = "1.19.0"
rand = "0.8.5"
reqwest = { version = "0.11.14", features = ["json"], optional = true }
schemars = "0.8.12"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
url = { version = "2.5.0", optional = true }
[features]
default = ["remote"]
remote = ["reqwest", "url"]
[dev-dependencies]
rand = "0.8.5"
test-log = { version = "0.2", default-features = false, features = ["trace"] }
tokio = { version = "1", default-features = false, features = ["macros", "rt"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }