forked from rust-lang/crates.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
78 lines (68 loc) · 1.55 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[project]
name = "cargo-registry"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
version = "0.1.0"
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-lang/crates.io"
description = "Backend of crates.io"
[workspace]
[profile.release]
opt-level = 2
[lib]
name = "cargo_registry"
doctest = false
[[test]]
name = "all"
path = "src/tests/all.rs"
[dependencies]
cargo-registry-s3 = { path = "src/s3", version = "0.1.0" }
rand = "0.3"
time = "0.1"
git2 = "0.6.4"
flate2 = "0.2"
semver = "0.5"
url = "1.2.1"
tar = "0.4.13"
r2d2 = "0.7.0"
openssl = "0.9.9"
curl = "0.4"
oauth2 = "0.3"
log = "0.3"
env_logger = "0.4"
hex = "0.2"
license-exprs = "^1.3"
dotenv = "0.10.0"
toml = "0.4"
diesel = { version = "0.16.0", features = ["postgres", "serde_json", "deprecated-time", "chrono"] }
diesel_codegen = "0.16.0"
r2d2-diesel = "0.16.0"
diesel_full_text_search = "0.16.0"
serde_json = "1.0.0"
serde_derive = "1.0.0"
serde = "1.0.0"
clippy = { version = "=0.0.142", optional = true }
chrono = "0.4.0"
comrak = { version = "0.1.8", default-features = false }
ammonia = "0.7.0"
docopt = "0.8.1"
itertools = "0.6.0"
conduit = "0.8"
conduit-conditional-get = "0.8"
conduit-cookie = "0.8"
cookie = "0.9"
conduit-json-parser = "0.8"
conduit-log-requests = "0.8"
conduit-middleware = "0.8"
conduit-router = "0.8"
conduit-static = "0.8"
conduit-git-http-backend = "0.8"
civet = "0.9"
[dev-dependencies]
conduit-test = "0.8"
bufstream = "0.1"
[build-dependencies]
dotenv = "0.10"
diesel = { version = "0.16.0", features = ["postgres"] }
[features]
unstable = []
lint = ["clippy"]