mtcs-garage/Cargo.toml
2024-08-13 15:30:27 +02:00

40 lines
990 B
TOML

[package]
name = "mtcs-garage"
edition = { workspace = true }
version = { workspace = true }
[workspace.package]
version = "0.0.0"
edition = "2021"
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.dependencies]
ed25519-dalek-patched = { package = "ed25519-dalek", git = "https://github.com/sp1-patches/curve25519-dalek", branch = "patch-v4.1.1" }
serde = { version = "1.0.198", features = ["derive"] }
sha2 = "0.10.8"
sp1-zkvm = { git = "https://github.com/succinctlabs/sp1.git" }
[dependencies]
ed25519-dalek = "2.1.1"
rand = "0.8.5"
sha2 = { workspace = true }
clap = { version = "4.5.4", features = ["derive"] }
hex = { version = "0.4.3", features = ["serde"] }
serde = { workspace = true }
sp1-sdk = { git = "https://github.com/succinctlabs/sp1.git"}
[build-dependencies]
sp1-helper = { git = "https://github.com/succinctlabs/sp1.git" }
[dev-dependencies]
assert_cmd = "2.0.14"
predicates = "3.1.0"
rstest = "0.19.0"
[[bin]]
name = "credit5000"
path = "src/main.rs"