forked from rust-lang/crates.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
25 lines (22 loc) · 840 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
[package]
name = "crates_io_worker"
version = "0.0.0"
license = "MIT OR Apache-2.0"
edition = "2021"
[lints]
workspace = true
[dependencies]
anyhow = "=1.0.86"
deadpool-diesel = { version = "=0.6.1", features = ["postgres", "tracing"] }
diesel = { version = "=2.2.4", features = ["postgres", "serde_json"] }
diesel-async = { version = "=0.5.0", features = ["async-connection-wrapper", "deadpool", "postgres"] }
futures-util = "=0.3.30"
sentry-core = { version = "=0.34.0", features = ["client"] }
serde = { version = "=1.0.209", features = ["derive"] }
serde_json = "=1.0.127"
thiserror = "=1.0.63"
tokio = { version = "=1.40.0", features = ["rt", "time"]}
tracing = "=0.1.40"
[dev-dependencies]
crates_io_test_db = { path = "../crates_io_test_db" }
tokio = { version = "=1.40.0", features = ["macros", "rt", "rt-multi-thread", "sync"]}