-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
43 lines (40 loc) · 1.03 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
[workspace]
members = [
"apps/cli",
"apps/sequencer",
"apps/sequencer_tests",
"apps/trigger-oracle",
"apps/oracles/crypto-price-feeds",
"apps/oracles/exsat-holdings",
"apps/oracles/gecko-terminal",
"libs/anomaly_detection",
"libs/data_feeds",
"libs/prometheus",
"libs/registry",
"libs/sdk",
"libs/utils",
"libs/config",
"libs/crypto",
"libs/feed_registry",
"libs/blockchain_data_model"]
resolver = "2"
[workspace.package]
version = "0.1.1"
authors = ["The Blocksense team"]
license = "to be decided"
edition = "2021"
[workspace.dependencies]
anyhow = "1"
is-terminal = "0.4"
futures = "0.3"
serde = { version = "1.0", features = ["derive"]}
serde_json = "1.0"
url = "2.5"
log = "0.4"
rand = "0.8"
reqwest = { version = "0.12", features = ["multipart", "blocking", "json"]}
tokio = { version = "1", features = ["full", "tracing"] }
tracing = { version = "0.1", features = ["async-await", "log"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
utils = { path = "libs/utils" }
chrono = "0.4.39"