mtcs-garage/Cargo.toml

40 lines
990 B
TOML
Raw Normal View History

2024-04-21 14:00:43 +00:00
[package]
name = "mtcs-garage"
2024-08-13 13:29:57 +00:00
edition = { workspace = true }
version = { workspace = true }
[workspace.package]
2024-04-21 14:00:43 +00:00
version = "0.0.0"
edition = "2021"
2024-08-13 13:29:57 +00:00
[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" }
2024-08-13 13:30:27 +00:00
serde = { version = "1.0.198", features = ["derive"] }
2024-08-13 13:29:57 +00:00
sha2 = "0.10.8"
sp1-zkvm = { git = "https://github.com/succinctlabs/sp1.git" }
[dependencies]
ed25519-dalek = "2.1.1"
rand = "0.8.5"
2024-08-13 13:29:57 +00:00
sha2 = { workspace = true }
2024-08-13 13:30:27 +00:00
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" }
2024-08-13 13:29:57 +00:00
[dev-dependencies]
assert_cmd = "2.0.14"
predicates = "3.1.0"
rstest = "0.19.0"
[[bin]]
name = "credit5000"
path = "src/main.rs"