forked from cisco/lal-build-manager
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
62 lines (55 loc) · 1.26 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
[package]
name = "lal"
version = "3.10.0"
authors = ["Eirik Albrigtsen <[email protected]>", "Ben Cordero <[email protected]>"]
description = "A strict, language-agnostic build system and dependency manager"
documentation = "http://lalbuild.github.io/lal"
license = "MIT"
categories = ["command-line-utilities"]
keywords = ["package", "dependency", "build", "docker", "artifactory"]
readme = "README.md"
edition = "2018"
[badges]
github = { repository = "lalbuild/lal", branch = "master" }
coveralls = { repository = "lalbuild/lal", branch = "master" }
[[bin]]
doc = false
name = "lal"
path = "src/main.rs"
[dependencies]
ansi_term = "0.7.2"
chrono = "0.2"
clap = "2.27.1"
filetime = "0.1"
flate2 = "0.2"
hyper = "0.10.9"
hyper-native-tls = "0.3.0"
lazy_static = "1.4.0"
log = "0.3.5"
loggerv = "0.6.0"
openssl-probe = "0.1.1"
rand = "0.3.14"
regex = "0.1.55"
semver = "0.9.0"
serde = "1.0.24"
serde_derive = "1.0.24"
serde_json = "1.0.8"
sha1 = "0.3.0"
tar = "0.4.26"
walkdir = "1.0.7"
dirs = "2.0.2"
tempdir = "0.3.7"
[dependencies.indicatif]
optional = true
version = "0.3.3"
[features]
default = ["docker", "progress"]
docker = []
progress = ["indicatif"]
upgrade = []
[lib]
name = "lal"
path = "src/lib.rs"
[dev-dependencies]
fs_extra = "1.1.0"
parameterized-macro = "0.3.1"