-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
88 lines (76 loc) · 2.85 KB
/
Cargo.toml
File metadata and controls
88 lines (76 loc) · 2.85 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[package]
name = "iota-gas-station"
version = "0.5.1"
edition = "2021"
authors = ["Mysten Labs <build@mystenlabs.com>", "IOTA Stiftung"]
license = "Apache-2.0"
repository = "https://github.com/iotaledger/gas-station"
[dependencies]
fastcrypto = { git = "https://github.com/MystenLabs/fastcrypto", rev = "69d496c71fb37e3d22fe85e5bbfd4256d61422b9" }
iota-metrics = { git = "https://github.com/iotaledger/iota", tag = "v1.20.1", package = "iota-metrics" }
iota-config = { git = "https://github.com/iotaledger/iota", tag = "v1.20.1", package = "iota-config" }
iota-json-rpc-types = { git = "https://github.com/iotaledger/iota", tag = "v1.20.1", package = "iota-json-rpc-types" }
iota-sdk = { git = "https://github.com/iotaledger/iota", tag = "v1.20.1", package = "iota-sdk" }
iota-sdk-types = { package = "iota-sdk-types", git = "https://github.com/iotaledger/iota-rust-sdk.git", rev = "e19c78a1bee17e0bf85fcd5b16a2f080cef26274", features = [
"hash",
"serde",
"schemars",
] }
iota-types = { git = "https://github.com/iotaledger/iota", tag = "v1.20.1", package = "iota-types" }
telemetry-subscribers = { git = "https://github.com/iotaledger/iota", tag = "v1.20.1", package = "telemetry-subscribers" }
anyhow = "1.0.75"
async-trait = "0.1.51"
arc-swap = { version = "1.7.1" }
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.14.0"
rand = { version = "0.8.5", features = ["small_rng"] }
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.46", features = ["full"] }
tokio-retry = "0.3.0"
serde_json = "1.0.95"
serde_json_canonicalizer = { version = "0.3.0" }
serde_yaml = "0.8.26"
lazy_static = "1.5.0"
uuid = { version = "1.17.0", features = ["v4"] }
humantime = "2.2.0"
regorus = { version = "0.4.0" }
url = { version = "2.5.7", features = ["serde"] }
[dev-dependencies]
indoc = "2"
rand = "0.8.5"
wiremock = "0.6.3"
iota-swarm-config = { git = "https://github.com/iotaledger/iota", tag = "v1.20.1", package = "iota-swarm-config" }
test-cluster = { git = "https://github.com/iotaledger/iota", tag = "v1.20.1", package = "test-cluster" }
[profile.release]
panic = "abort"
[[example]]
name = "sponsored_transaction"
path = "examples/rust/sponsored_transaction.rs"
[[example]]
name = "hook_with_request_headers"
path = "examples/rust/hook_with_request_headers.rs"
[[example]]
name = "hook_with_config_headers"
path = "examples/rust/hook_with_config_headers.rs"