-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (32 loc) · 917 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
33
34
35
36
37
[package]
name = "catalyst-signed-doc"
version = "0.0.4"
edition.workspace = true
authors.workspace = true
homepage.workspace = true
repository.workspace = true
license.workspace = true
[lints]
workspace = true
[dependencies]
catalyst-types = { version = "0.0.3", path = "../catalyst-types" }
anyhow = "1.0.95"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.134"
coset = "0.3.8"
minicbor = { version = "0.25.1", features = ["half"] }
brotli = "7.0.0"
ed25519-dalek = { version = "2.1.1", features = ["rand_core", "pem"] }
hex = "0.4.3"
strum = { version = "0.26.3", features = ["derive"] }
clap = { version = "4.5.23", features = ["derive", "env"] }
jsonschema = "0.28.3"
jsonpath-rust = "0.7.5"
futures = "0.3.31"
[dev-dependencies]
base64 = "0.22.1"
rand = "0.8.5"
tokio = { version = "1.42.0", features = [ "macros" ] }
[[bin]]
name = "mk_signed_doc"
path = "bins/mk_signed_doc.rs"