Spaces:
Build error
Build error
File size: 1,159 Bytes
1295969 | 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 38 39 40 41 42 43 | [package]
name = "backend"
version.workspace = true
edition.workspace = true
license.workspace = true
[[bin]]
name = "backend"
path = "src/main.rs"
[lib]
name = "backend"
path = "src/lib.rs"
[dependencies]
tokio = { workspace = true }
axum = { workspace = true }
tower = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
anyhow = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
reqwest = { workspace = true }
chrono = { workspace = true }
sha2 = { workspace = true }
hex = { workspace = true }
heed = { workspace = true }
shared = { path = "../../libs/shared" }
zk_circuits = { path = "../../libs/zk-circuits" }
erdfa-publish = { path = "../../nix/erdfa-publish" }
ethers-core = { version = "2" }
ethers-providers = { version = "2" }
ethers-signers = { version = "2", features = ["ledger"] }
quick-xml = { workspace = true }
xot = { workspace = true }
tower-http = { workspace = true }
thiserror = { workspace = true }
[features]
default = []
ledger = []
|