2024-04-24 18:44:52 -07:00
|
|
|
[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]
|
2024-11-23 00:47:36 +00:00
|
|
|
axum = { version = "0.7.9", features = ["macros"] }
|
2024-04-24 18:44:52 -07:00
|
|
|
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"
|
2024-11-23 00:47:36 +00:00
|
|
|
|
|
|
|
|
# 1f4afb0c000e60f976a15a990414349d17207524 = betanet
|
|
|
|
|
neptune-core = {git = "https://github.com/Neptune-Crypto/neptune-core.git", rev = "1f4afb0c000e60f976a15a990414349d17207524"}
|
2024-04-24 18:44:52 -07:00
|
|
|
tarpc = { version = "^0.34", features = [
|
|
|
|
|
"tokio1",
|
|
|
|
|
"serde-transport",
|
|
|
|
|
"serde-transport-json",
|
|
|
|
|
"tcp",
|
|
|
|
|
] }
|
|
|
|
|
clap = "4.5.4"
|
2024-05-10 17:04:11 -07:00
|
|
|
thiserror = "1.0.59"
|
2024-05-09 08:56:59 -07:00
|
|
|
boilerplate = { version = "1.0.0" }
|
|
|
|
|
html-escaper = "0.2.0"
|
|
|
|
|
tower-http = { version = "0.5.2", features = ["fs"] }
|
2024-05-09 11:01:53 -07:00
|
|
|
readonly = "0.2.12"
|
2024-05-16 10:16:48 -07:00
|
|
|
url = "2.5.0"
|
2024-05-25 19:16:36 -07:00
|
|
|
lettre = {version = "0.11.7", features = ["tokio1-native-tls"]}
|
|
|
|
|
chrono = "0.4.34"
|
2024-04-24 18:44:52 -07:00
|
|
|
|
2024-05-22 18:34:47 -07:00
|
|
|
# only should be used inside main.rs, for the binary.
|
|
|
|
|
anyhow = "1.0.86"
|
2024-05-27 17:24:01 -07:00
|
|
|
arc-swap = "1.7.1"
|
2024-04-24 18:44:52 -07:00
|
|
|
|
|
|
|
|
[patch.crates-io]
|
2024-05-10 17:04:11 -07:00
|
|
|
# 694f27daf78aade0ed0dc07e3babaab036cd5572 is tip of branch: master as of 2024-04-30
|
2024-11-23 00:47:36 +00:00
|
|
|
#tasm-lib = { git = "https://github.com/TritonVM/tasm-lib.git", rev = "694f27daf78aade0ed0dc07e3babaab036cd5572" }
|
2024-04-24 18:44:52 -07:00
|
|
|
|
|
|
|
|
# 0d2cb98c0495d30e53d28e82a35de44dc655c3ea = tip of branch: master, on 2024-04-24
|
2024-11-23 00:47:36 +00:00
|
|
|
#twenty-first = { git = "https://github.com/Neptune-Crypto/twenty-first.git", rev = "0d2cb98c0495d30e53d28e82a35de44dc655c3ea" }
|