-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
30 lines (27 loc) · 955 Bytes
/
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
[package]
name = "gooddollar-oracle"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.25.0", features = ["full"] }
axum = {version = "0.6.6", features = ["headers"]}
chrono = "0.4.23"
dotenv = "0.15.0"
tracing = "0.1.37"
tracing-appender = "0.2.2"
tracing-subscriber = { version = "0.3.16", features = ["env-filter", "registry", "json"] }
tower-http = { version = "0.4.0", features = ["cors"] }
config = { version = "0.13.3", default_features = false, features = ["json"] }
log = { version = "0.4", features = ["max_level_debug", "release_max_level_warn"] }
backtrace = "0.3"
hex = "0.4.3"
once_cell = "1.17.1"
secp256k1 = { version = "0.26.0", features = ["global-context", "rand"] }
web3 = "0.18.0"
ethereum-types = "0.14.1"
base64 = "0.21.0"
near-sdk = "4.1.1"
near-crypto = "0.16.0"
[dev_dependencies]
assert_matches = "1.5.0"