-
Notifications
You must be signed in to change notification settings - Fork 612
/
Copy pathCargo.toml
27 lines (24 loc) · 886 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
[package]
name = "crates_io_worker"
version = "0.0.0"
license = "MIT OR Apache-2.0"
edition = "2021"
[lints]
workspace = true
[dependencies]
anyhow = "=1.0.95"
deadpool-diesel = { version = "=0.6.1", features = ["postgres", "tracing"] }
diesel = { version = "=2.2.6", features = ["postgres", "serde_json"] }
diesel-async = { version = "=0.5.2", features = ["async-connection-wrapper", "deadpool", "postgres"] }
futures-util = "=0.3.31"
sentry-core = { version = "=0.36.0", features = ["client"] }
serde = { version = "=1.0.217", features = ["derive"] }
serde_json = "=1.0.135"
thiserror = "=2.0.11"
tokio = { version = "=1.43.0", features = ["rt", "time"]}
tracing = "=0.1.41"
[dev-dependencies]
claims = "=0.8.0"
crates_io_test_db = { path = "../crates_io_test_db" }
insta = { version = "=1.42.0", features = ["json"] }
tokio = { version = "=1.43.0", features = ["macros", "sync"]}