-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
48 lines (46 loc) · 1.24 KB
/
Cargo.toml
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
44
45
46
47
48
[package]
name = "sorobix-api-rs"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ethnum = "1.3.2"
tower-http = { version = "0.4.0", features = ["cors", "trace"] }
axum = "0.6.11"
reqwest = { version = "0.11.14", features = ["json"] }
serde = { version = "1.0.82", features = ["derive"] }
serde_json = "1.0.82"
tokio = { version = "1.0", features = ["full"] }
soroban-env-host = { version = "20.0.0-rc2" }
rand = "0.7.0"
hex = "0.4.3"
sha2 = "0.10.6"
ed25519-dalek = "1.0.1"
soroban-spec = "20.0.0-rc2"
soroban-ledger-snapshot = "20.0.0-rc2"
stellar-strkey = "0.0.7"
soroban-sdk = "20.0.0-rc2"
thiserror = "1.0.31"
itertools = "0.10.5"
jsonrpsee-http-client = "0.18.1"
jsonrpsee-core = "0.18.1"
http = "0.2.9"
serde_derive = "1.0.82"
serde-aux = "4.1.2"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tracing-appender = "0.2.2"
wasmparser = "0.90.0"
base64 = "0.21.2"
redis = "0.23.0"
clap = { version = "4.1.8", features = [
"derive",
"env",
"deprecated",
"string",
] }
clap_complete = "4.1.4"
heck = "0.4.1"
soroban-spec-json = "20.0.0-rc4"
soroban-spec-rust = "20.0.0-rc2"
soroban-spec-tools = "20.0.0-rc4"