-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
43 lines (37 loc) · 1003 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "crate-index"
version = "0.3.1"
authors = ["Daniel Eades <danieleades@hotmail.com>"]
edition = "2018"
description = "A small library for managing a Cargo crate index"
readme = "README.md"
homepage = "https://github.com/Rust-Bucket/Crate-Index"
documentation = "https://docs.rs/crate-index"
repository = "https://github.com/Rust-Bucket/Crate-Index"
keywords = [
"crates",
"index",
"registry",
"async",
]
license = "MIT"
[badges]
codecov = { repository = "Rust-Bucket/Crate-Index"}
[dependencies]
serde = { version = "1.0.130", features = ["derive"] }
url = { version = "2.2.2", features = ["serde"] }
semver = { version = "1.0.4", features = ["serde"] }
serde_json = "1.0.68"
async-std = "1.10.0"
thiserror = "1.0.29"
git2 = "0.13.22"
regex = "1.5.4"
lazy_static = "1.4.0"
futures-util = "0.3.17"
[features]
default = ["blocking"]
blocking = []
[dev-dependencies]
test-case = "1.2.0"
tempfile = "3.2.0"
async-std = { version = "1.10.0", features = ["attributes"] }