-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
45 lines (42 loc) · 1.54 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
[package]
name = "fuel-faucet"
version = "0.0.0"
edition = "2021"
publish = false
homepage = "https://fuel.network/"
license = "Apache-2.0"
repository = "https://github.com/FuelLabs/faucet"
description = "A token faucet for onboarding fuel users"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
axum = "0.5"
fuel-core-client = "0.39.0"
fuel-tx = "0.58.2"
fuel-types = "0.58.2"
fuels-accounts = { version = "0.66.8" }
fuels-core = { version = "0.66.8" }
handlebars = "4.2"
lazy_static = "1.4"
memoize = "0.3.1"
reqwest = { version = "0.11", features = ["json", "rustls-tls-webpki-roots"], default-features = false }
secrecy = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
tokio = { version = "1.0", features = ["full"] }
tower = { version = "0.4", features = ["buffer", "limit", "load-shed", "util", "timeout"] }
tower-http = { version = "0.2.5", features = ["cors", "trace", "set-header"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
[dev-dependencies]
fuel-core = { version = "0.39.0", default-features = false, features = ["test-helpers"] }
fuel-core-txpool = "0.39.0"
fuel-crypto = { version = "0.58.2", features = ["rand"] }
fuel-tx = { version = "0.58.2", features = ["test-helpers", "rand"] }
fuel-types = { version = "0.58.2", features = ["random"] }
futures = "0.3"
insta = "1.14"
rand = "0.8"
tokio = { version = "1.0", features = ["test-util"] }
[build-dependencies]
minify-html = "0.8"