-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
76 lines (66 loc) · 1.54 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
[package]
name = "diplo"
version = "1.0.0"
edition = "2021"
description = "Diplo is a script runner and dependency manager made in rust"
authors = ["Tricked-dev"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/Tricked-dev/diplo"
homepage = "https://tricked.pro/diplo"
[profile.release]
codegen-units = 1
lto = true
[package.metadata.deb]
maintainer = "Tricked-dev"
copyright = "2021, Tricked-dev"
license-file = ["LICENSE", "4"]
extended-description = """https://github.com/Tricked-dev/diplo"""
depends = "$auto"
section = "utility"
priority = "optional"
assets = [
[
"target/release/diplo",
"usr/bin/",
"755",
],
[
"README.md",
"usr/share/doc/diplo/README",
"644",
],
]
[dependencies]
clap = { version = "3.0.0-beta.8", features = ["cargo", "color"] }
dotenv = "0.15.0"
lazy_static = "1.4.0"
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.69"
hyper = { version = "0.14.14", features = [
"client",
"http1",
"http2",
"runtime",
] }
tokio = { version = "1.13.0", features = ["macros", "rt-multi-thread"] }
regex = "1.5.4"
rprompt = "1.0.5"
watchexec = "1.17.1"
anyhow = "1.0.45"
once_cell = "1.8.0"
toml_edit = "0.8.0"
toml = "0.5.8"
colored = "2.0.0"
humantime = "2.1.0"
hyper-tls = "0.5.0"
ctrlc = "3.2.1"
[target.'cfg(unix)'.dependencies]
openssl = { version = "0.10.38", features = ["vendored"] }
libc = "0.2.107"
[target.'cfg(windows)'.build-dependencies]
winapi = "0.3.9"
[features]
[[bin]]
name = "diplo"
path = "src/bin/diplo.rs"