forked from rust-lang/crates.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 1.09 KB
/
Copy pathCargo.toml
File metadata and controls
34 lines (31 loc) · 1.09 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
[package]
name = "crates_io_database"
version = "0.0.0"
license = "MIT OR Apache-2.0"
edition = "2024"
[lints]
workspace = true
[dependencies]
bon = "=3.9.3"
chrono = { version = "=0.4.45", default-features = false, features = ["serde"] }
crates_io_index = { path = "../crates_io_index" }
crates_io_validation = { path = "../crates_io_validation" }
diesel = { version = "=2.3.11", features = ["serde_json", "chrono", "numeric"] }
diesel-async = { version = "=0.9.2", features = ["postgres"] }
diesel_full_text_search = "=2.3.0"
rand = "=0.10.2"
secrecy = "=0.10.3"
semver = { version = "=1.0.28", features = ["serde"] }
serde = { version = "=1.0.228", features = ["derive"] }
serde_json = "=1.0.150"
sha2 = "=0.11.0"
thiserror = "=2.0.18"
tracing = "=0.1.44"
utoipa = { version = "=5.5.0", features = ["chrono"] }
[dev-dependencies]
claims = "=0.8.0"
crates_io_test_db = { path = "../crates_io_test_db" }
crates_io_test_utils = { path = "../crates_io_test_utils" }
googletest = "=0.14.3"
insta = { version = "=1.48.0", features = ["filters", "json"] }
tokio = { version = "=1.52.3", features = ["macros", "rt"] }