-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 697 Bytes
/
Cargo.toml
File metadata and controls
27 lines (25 loc) · 697 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
[package]
name = "decodingus-nexus"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1.36", features = ["full", "macros", "rt-multi-thread"] }
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "postgres", "macros", "chrono"] }
anyhow = "1.0"
dotenvy = "0.15"
log = "0.4.20"
env_logger = "0.11"
chrono = { version = "0.4", features = ["serde"] }
futures = "0.3"
urlencoding = "2"
paste = "1.0"
async-trait = "0.1"
ciborium = "0.2"
rs-car = "0.4"
cid = "0.10"
uuid = { version = "1.8", features = ["v4"] }
[dev-dependencies]
mockall = "0.12"