37 lines
1.3 KiB
TOML
37 lines
1.3 KiB
TOML
[package]
|
|
name = "neptune-explorer"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
axum = {version = "0.7.5", features = ["macros"] }
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
serde_json = "1.0.115"
|
|
tokio = { version = "1.37.0", features = ["full", "tracing"] }
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = "0.3.18"
|
|
neptune-core = {git = "https://github.com/Neptune-Crypto/neptune-core.git", rev = "9a7973259d63f148f8bf353866f260ba939d4649"}
|
|
tarpc = { version = "^0.34", features = [
|
|
"tokio1",
|
|
"serde-transport",
|
|
"serde-transport-json",
|
|
"tcp",
|
|
] }
|
|
clap = "4.5.4"
|
|
thiserror = "1.0.58"
|
|
#boilerplate = { version = "1.0.0", features = ["axum"] }
|
|
boilerplate = { version = "1.0.0" }
|
|
html-escaper = "0.2.0"
|
|
tower-http = { version = "0.5.2", features = ["fs"] }
|
|
readonly = "0.2.12"
|
|
|
|
|
|
[patch.crates-io]
|
|
# aa759b66efa9b5ea77e96d73bf27ed1edfbcfc3f is tip of branch: master as of 2024-04-24
|
|
tasm-lib = { git = "https://github.com/TritonVM/tasm-lib.git", rev = "aa759b66efa9b5ea77e96d73bf27ed1edfbcfc3f" }
|
|
|
|
# 0d2cb98c0495d30e53d28e82a35de44dc655c3ea = tip of branch: master, on 2024-04-24
|
|
twenty-first = { git = "https://github.com/Neptune-Crypto/twenty-first.git", rev = "0d2cb98c0495d30e53d28e82a35de44dc655c3ea" }
|