forked from d-e-s-o/cargo-http-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
60 lines (55 loc) · 1.86 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
[package]
name = "cargo-http-registry"
version = "0.1.5"
authors = ["Daniel Mueller <[email protected]>"]
edition = "2021"
rust-version = "1.63"
license = "GPL-3.0-or-later"
homepage = "https://github.com/d-e-s-o/cargo-http-registry"
repository = "https://github.com/d-e-s-o/cargo-http-registry.git"
readme = "README.md"
categories = [
"command-line-utilities",
"config",
"database",
"development-tools",
"filesystem",
]
keywords = [
"cargo",
"registry",
"registry-server",
"http",
"filesystem",
]
description = """
A cargo registry allowing for quick publishing of crates when using
crates.io is just not desired.
"""
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
incremental = false
[dependencies]
anyhow = {version = "1.0.14"}
git2 = {version = "0.17"}
serde = {version = "1.0.1", features = ["derive"]}
serde_json = {version = "1.0"}
sha2 = {version = "0.10"}
structopt = {version = "0.3.20"}
tokio = {version = "1.34", default-features = false, features = ["rt"]}
tracing = {version = "0.1", default-features = false, features = ["std"]}
tracing-subscriber = {version = "0.3", default-features = false, features = ["ansi", "env-filter", "fmt"]}
warp = {version = "0.3", default-features = false}
[dev-dependencies]
tempfile = {version = "3.1"}
tokio = {version = "1.34", default-features = false, features = ["macros", "rt"]}
# A set of unused dependencies that we require to force correct minimum
# versions of transitive dependencies, for cases where our dependencies
# have incorrect dependency specifications themselves.
_headers_version_unused = {package = "headers", version = "0.3.1"}
_pkg-config_unused = {package = "pkg-config", version = "0.3.16"}
_serde_urlencoded_unused = {package = "serde_urlencoded", version = "0.7.1"}
[target.'cfg(not(target_os = "windows"))'.dev-dependencies]
_openssl_sys_unused = {package = "openssl-sys", version = "0.9.64"}