forked from frewsxcv/rust-crates-index
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (43 loc) · 1.4 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "crates-index"
description = "Library for retrieving and interacting with the crates.io index"
version = "0.19.13"
homepage = "https://lib.rs/crates-index"
authors = ["Corey Farwell <[email protected]>", "Kornel <[email protected]>"]
keywords = ["packaging", "index", "dependencies", "crate", "meta"]
categories = ["development-tools", "database"]
repository = "https://github.com/frewsxcv/rust-crates-index"
license = "Apache-2.0"
documentation = "https://docs.rs/crates-index/"
edition = "2021"
rust-version = "1.60"
[dependencies]
git2 = { version = ">=0.16, <=0.17", default-features = false, optional = true }
hex = { version = "0.4.3", features = ["serde"] }
home = "0.5.4"
http = { version = "0.2", optional = true }
memchr = "2.5.0"
rayon = { version = "1.7.0", optional = true }
rustc-hash = "1.1.0"
semver = "1.0.17"
serde = { version = "1.0.160", features = ["rc"] }
serde_derive = "1.0.160"
serde_json = "1.0.96"
smol_str = { version = "0.2.0", features = ["serde"] }
toml = "0.7.3"
[dev-dependencies]
tempfile = "3.5.0"
cap = "0.1.2"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
features = ["sparse-http"]
[features]
default = ["git-index", "https", "parallel"]
git-index = ["git2"]
https = ["git2/https"]
parallel = ["dep:rayon"]
vendored-openssl = ["git2/vendored-openssl"]
ssh = ["git2/ssh"]
sparse-http = ["dep:http"]
[badges]
maintenance = { status = "actively-developed" }