-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 988 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (29 loc) · 988 Bytes
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
[package]
name = "scheduler"
version = "0.0.1-canary.114"
edition = "2021"
[dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "time", "signal", "net", "io-util"] }
surrealdb = { version = "3.1.2", features = ["kv-rocksdb", "protocol-ws", "protocol-http"] }
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
async-trait = "0.1"
futures = "0.3"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
config = "0.14"
anyhow = "1"
axum = "0.7"
uuid = { version = "1", features = ["v4"] }
ssp-protocol = { path = "../../packages/ssp-protocol" }
rust-s3 = { version = "0.35", default-features = false, features = ["tokio-rustls-tls"] }
flate2 = "1"
chrono = { version = "0.4", features = ["serde"] }
tempfile = "3"
sha2 = "0.10"
[build-dependencies]
chrono = "0.4"
[dev-dependencies]
tower = { version = "0.5", features = ["util"] }
http-body-util = "0.1"