-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathCargo.toml
32 lines (29 loc) · 966 Bytes
/
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
[package]
name = "mithrildemo"
version = "0.1.48"
authors = { workspace = true }
edition = { workspace = true }
documentation = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
[dependencies]
base64 = "0.22.1"
blake2 = "0.10.6"
clap = { version = "4.5.28", features = ["derive"] }
hex = "0.4.3"
log = "0.4.25"
mithril-common = { path = "../../mithril-common", features = ["fs"] }
mithril-doc = { path = "../../internal/mithril-doc" }
rand_chacha = "0.3.1"
rand_core = "0.6.4"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
[target.'cfg(not(windows))'.dependencies]
# non-windows: use default rug backend
mithril-stm = { path = "../../mithril-stm" }
[target.'cfg(windows)'.dependencies]
# Windows doesn't support rug backend, fallback to num-integer
mithril-stm = { path = "../../mithril-stm", default-features = false, features = [
"num-integer-backend",
] }