mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
37 lines
1.6 KiB
TOML
37 lines
1.6 KiB
TOML
[package]
|
|
name = "mina"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
crate-type = ["staticlib"]
|
|
|
|
[dependencies]
|
|
mina-tree = { version = "0.1.0", path = "../../ledger" }
|
|
mina-p2p-messages = { git = "https://github.com/openmina/mina-p2p-messages-rs", branch = "signed-amount", features = ["hashing"] }
|
|
mina-hasher = { git = "https://github.com/openmina/proof-systems", branch = "ledger-newtypes" }
|
|
mina-signer = { git = "https://github.com/openmina/proof-systems", branch = "ledger-newtypes" }
|
|
o1-utils = { git = "https://github.com/openmina/proof-systems", branch = "ledger-newtypes" }
|
|
binprot = { git = "https://github.com/openmina/binprot-rs", rev = "ead5ba916725abf8ab212b89985b47c79d1a006a" }
|
|
|
|
[build-dependencies]
|
|
cbindgen = "0.24.3"
|
|
|
|
[dev-dependencies]
|
|
num-bigint = "0.4.3"
|
|
serde = "1.0.160"
|
|
serde_json = "1.0.96"
|
|
|
|
[patch.crates-io]
|
|
ark-ff = { git = "https://github.com/openmina/algebra", branch = "openmina" }
|
|
ark-ec = { git = "https://github.com/openmina/algebra", branch = "openmina" }
|
|
ark-poly = { git = "https://github.com/openmina/algebra", branch = "openmina" }
|
|
ark-serialize = { git = "https://github.com/openmina/algebra", branch = "openmina" }
|
|
|
|
[patch.'https://github.com/o1-labs/proof-systems']
|
|
mina-hasher = { git = "https://github.com/openmina/proof-systems", branch = "ledger-newtypes" }
|
|
mina-signer = { git = "https://github.com/openmina/proof-systems", branch = "ledger-newtypes" }
|
|
mina-curves = { git = "https://github.com/openmina/proof-systems", branch = "ledger-newtypes" }
|
|
o1-utils = { git = "https://github.com/openmina/proof-systems", branch = "ledger-newtypes" }
|