forked from rust-lang/crates.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
86 lines (76 loc) · 1.77 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
79
80
81
82
83
84
85
86
[package]
name = "cargo-registry"
authors = ["Alex Crichton <[email protected]>"]
version = "0.2.2"
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"
[package.metadata.docs.rs]
rustdoc-args = [
"--no-defaults",
"--passes", "collapse-docs",
"--passes", "unindent-comments"
]
[dependencies]
cargo-registry-s3 = { path = "src/s3", version = "0.2.0" }
rand = "0.3"
git2 = "0.6.4"
flate2 = "0.2"
semver = "0.5"
url = "1.2.1"
tar = "0.4.13"
r2d2 = "0.8.0"
openssl = "0.9.14"
curl = "0.4"
oauth2 = "0.3"
log = "0.3"
env_logger = "0.4"
hex = "0.2"
htmlescape = "0.3.1"
license-exprs = "^1.3"
dotenv = "0.10.0"
toml = "0.4"
diesel = { version = "0.99.0", features = ["postgres", "serde_json", "chrono"] }
r2d2-diesel = "0.99.0"
diesel_full_text_search = "0.99.0"
serde_json = "1.0.0"
serde_derive = "1.0.0"
serde = "1.0.0"
chrono = { version = "0.4.0", features = ["serde"] }
comrak = { version = "0.2.3", default-features = false }
ammonia = "1.0.0"
docopt = "0.8.1"
itertools = "0.6.0"
lettre = "0.6"
scheduled-thread-pool = "0.2.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"
hyper = "0.11"
hyper-tls = "0.1"
futures = "0.1"
tokio-core = "0.1"
tokio-service = "0.1"
[build-dependencies]
dotenv = "0.10"
diesel = { version = "0.99.0", features = ["postgres"] }
diesel_migrations = { version = "0.99.0", features = ["postgres"] }