-
Notifications
You must be signed in to change notification settings - Fork 51
/
Cargo.toml
66 lines (57 loc) · 1.21 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
[package]
name = "fleet-rs"
version = "0.0.8"
edition = "2021"
description = "The blazing fast build tool for Rust."
authors = ["Dimension <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://fleet.rs"
repository = "https://github.com/dimensionhq/fleet"
keywords = ["rust", "build", "tool"]
categories = ["build", "rust-build-tools"]
[[bin]]
name = "cargo-fleet"
path = "src/main.rs"
[[bin]]
name = "fleet"
path = "src/../src/main.rs"
test = false
bench = false
[build-dependencies]
rustc_version = "0.4.0"
[dependencies]
anyhow = "1.0.57"
ansi_term = "0.12"
dirs = "4.0.0"
wsl = "0.1.0"
sysinfo = "0.24.1"
rustc_version = "0.4.0"
dialoguer = "0.10.0"
colored = "2.0.0"
sys-info = "0.9.1"
which = "4.2.5"
serde_json = "1.0.81"
comfy-table = "6.0.0"
byte-unit = "4.0.14"
cargo-util = "0.1.2"
indicatif = "0.16.2"
human-panic = "1.0.3"
ptree = "0.4.0"
[dependencies.clap]
version = "3.1.18"
features = ["cargo", "std", "color"]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.toml]
version = "0.5.8"
features = ["preserve_order"]
[dependencies.uuid]
version = "1.0.0"
features = ["serde", "v4"]
[profile.dev]
opt-level = 0
debug = 2
incremental = true