-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
27 lines (24 loc) · 868 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 = "cratesio-dbdump-lookup"
version = "0.1.1"
edition = "2018"
authors = ["Alyssa Awoo <alticodes@gmail.com>", "Mikkel Rasmussen <theluja@gmail.com>"]
documentation = "http://docs.rs/cratesio-dbdump-lookup"
keywords = ["crates", "sqlite"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/alyti/cratesio-dbdump-lookup"
description = "utility trait for rusqlite connection for working with crates.io dbdump data"
[features]
default = ["trace"]
trace = ["tracing"]
[dependencies]
thiserror = "1.0.19"
tracing = { version = "0.1.13", optional = true }
serde = { version = "1", features = [ "derive" ] }
rusqlite = { features = ["bundled", "csvtab"], version = "0.25.1" }
[dev-dependencies]
color-eyre = "0.5"
tracing-subscriber = { version = "0.2.5"}
tracing-error = { version = "0.1.2"}
cratesio-dbdump-csvtab = { version = "0.2.2" }