forked from SO4-Markets/so4-oracle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (42 loc) · 1.21 KB
/
Copy pathCargo.toml
File metadata and controls
48 lines (42 loc) · 1.21 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
[package]
name = "oracle"
version = "0.1.0"
edition = "2021"
authors = ["0xsteins"]
license = "MIT"
rust-version.workspace = true
[lints]
workspace = true
[lib]
path = "src/lib.rs"
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "oracle"
path = "src/main.rs"
[dependencies]
axum = "0.8"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time", "signal", "test-util"] }
tokio-util = "0.7"
tower-http = { version = "0.7", features = ["cors", "trace", "request-id", "util"] }
uuid = { version = "1", features = ["v4", "fast-rng"] }
reqwest = { version = "0.13", default-features = false, features = ["json", "rustls", "query"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
ed25519-dalek = "2.1"
hex = "0.4"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
dotenvy = "0.15"
shared-config = { path = "../shared/config" }
stellar-rpc-client = "27.0.0"
stellar-xdr = { version = "27", features = ["std", "base64"] }
stellar-strkey = "0.0.18"
base64 = "0.22"
sha2 = "0.10"
digest = "0.10"
[dev-dependencies]
futures = "0.3"
wiremock = "0.6"
tokio = { version = "1", features = ["full"] }
tower = { version = "0.5", features = ["util"] }
predicates = "3.0"