-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
69 lines (58 loc) · 2.29 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "iota-gas-station"
version = "0.4.0"
edition = "2021"
authors = ["Mysten Labs <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/iotaledger/iota-gas-station"
[dependencies]
fastcrypto = { git = "https://github.com/MystenLabs/fastcrypto" }
iota-metrics = { git = "https://github.com/iotaledger/iota", version = "0.10.0-alpha", package = "iota-metrics" }
iota-config = { git = "https://github.com/iotaledger/iota", version = "0.10.0-alpha", package = "iota-config" }
iota-json-rpc-types = { git = "https://github.com/iotaledger/iota", version = "0.10.0-alpha", package = "iota-json-rpc-types" }
iota-sdk = { git = "https://github.com/iotaledger/iota", version = "0.10.0-alpha", package = "iota-sdk" }
iota-types = { git = "https://github.com/iotaledger/iota", version = "0.10.0-alpha", package = "iota-types" }
shared-crypto = { git = "https://github.com/iotaledger/iota", version = "0.10.0-alpha", package = "shared-crypto" }
telemetry-subscribers = { git = "https://github.com/iotaledger/iota", version = "0.10.0-alpha", package = "telemetry-subscribers" }
anyhow = "1.0.75"
async-trait = "0.1.51"
axum = { version = "0.6.6", features = ["headers"] }
bcs = "0.1.6"
clap = { version = "4.4.10", features = ["env"] }
chrono = "0.4.19"
const-str = "0.5.6"
eyre = "0.6.9"
futures-util = "0.3.30"
git-version = "0.3.9"
hostname = "0.4.0"
itertools = "0.14.0"
once_cell = "1.19.0"
parking_lot = "0.12.1"
prometheus = "0.13.3"
rand = "0.8.5"
redis = { version = "0.24.0", features = [
"default",
"async-std-comp",
"connection-manager",
] }
reqwest = { version = "0.11.22", features = ["json"] }
serde = { version = "1.0.193", features = ["derive", "rc"] }
serde_with = "3.4.0"
schemars = "0.8.16"
tap = "1.0.1"
tempfile = "3.2.0"
tracing = "0.1.40"
tokio = { version = "1.39.2", features = ["full"] }
tokio-retry = "0.3.0"
serde_json = "1.0.108"
serde_yaml = "0.9.33"
lazy_static = "1.5.0"
[dev-dependencies]
rand = "0.8.5"
iota-swarm-config = { git = "https://github.com/iotaledger/iota", version = "0.10.0-alpha", package = "iota-swarm-config" }
test-cluster = { git = "https://github.com/iotaledger/iota", version = "0.10.0-alpha", package = "test-cluster" }
[profile.release]
panic = "abort"
[[example]]
name = "sponsored_transaction"
path = "examples/rust/sponsored_transaction.rs"