-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 913 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 913 Bytes
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
[package]
name = "wheel-3box"
version = "0.2.2"
edition = "2021"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow.workspace = true
ceramic-config = { path = "../ceramic-config", version = "0.2.2" }
clap = { version = "4.1.4", features = ["derive"] }
did-method-key = "0.2"
env_logger = "0.10"
futures-util = "0.3"
hex = "0.4"
inquire = "0.6"
log.workspace = true
reqwest = { version = "0.11", default-features = false, features = ["rustls", "stream"] }
semver = "1.0"
serde.workspace = true
serde_json.workspace = true
spinners = "4.1"
sqlx = { version = "0.7", features = ["postgres", "runtime-tokio-rustls", "sqlite"] }
ssi = "0.7"
tokio = { version = "1.25", default-features = false, features = ["fs", "macros", "process", "rt", "rt-multi-thread"] }
which = "5.0"
zip = "0.6"
[[bin]]
name = "wheel"
path = "src/main.rs"