summaryrefslogtreecommitdiffstats
path: root/crate_db/Cargo.toml
blob: d8ee715f907f7367e88e56b8f05118a6502cc1d2 (plain)
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
[package]
edition = "2018"
name = "crate_db"
version = "0.4.7"
authors = ["Kornel <kornel@geekhood.net>"]
description = "Internal index of crates used by crates.rs"

[lib]
name ="crate_db"
path = "src/lib_crate_db.rs"

[dependencies]
rusqlite = "0.21.0"
rich_crate = { path = "../rich_crate" }
categories = { path = "../categories" }
failure = "0.1.6"
lazy_static = "1.4.0"
chrono = "0.4.10"
thread_local = "1.0.0"
parking_lot = "0.10.0"
rmp-serde = "0.14.0"
heck = "0.3.1"
semver = "0.9.0"
tokio = { version = "0.2.11", features = ["sync", "macros", "rt-threaded"] }

[dev-dependencies]
tempfile = "3.1.0"
cargo_toml = "0.8.0"