-
Notifications
You must be signed in to change notification settings - Fork 143
/
Cargo.toml
54 lines (48 loc) · 1.28 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
[package]
name = "fuelup"
version = "0.27.0"
authors = ["Fuel Labs <[email protected]>"]
edition = "2021"
homepage = "https://fuel.network/"
license = "Apache-2.0"
repository = "https://github.com/FuelLabs/fuelup"
description = "Manage the Fuel toolchain with ease"
publish = false
[lib]
name = "fuelup"
path = "src/lib.rs"
[[bin]]
name = "fuelup"
path = "src/main.rs"
[dependencies]
ansi_term = "0.12.1"
ansiterm = "0.12.2"
anyhow = "1"
clap = { version = "4.2.4", features = ["cargo", "derive", "env"] }
clap_complete = "4.2"
component = { path = "component" }
dirs = "4"
flate2 = "1"
indicatif = "0.17.7"
indoc = "2.0"
semver = { version = "1", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
tar = "0.4"
tempfile = "3"
thiserror = "1.0.57"
time = { version = "0.3", features = ["macros", "parsing", "formatting", "serde-well-known"] }
toml_edit = { version = "0.13", features = ["serde", "easy"] }
tracing = "0.1"
tracing-appender = "0.2.3"
tracing-subscriber = { version = "0.3", features = ["ansi", "env-filter", "json"] }
ureq = "2.4"
[workspace]
members = ["component", "ci/build-channel", "ci/compare-versions"]
[dev-dependencies]
chrono = "0.4.33"
regex = "1.11"
strip-ansi-escapes = "0.2.0"
[lints.clippy]
indexing_slicing = "warn"