-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathCargo.toml
39 lines (35 loc) · 980 Bytes
/
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
[package]
name = "marine"
description = "Fluence Marine command line tool"
version = "0.20.1"
authors = ["Fluence DAO, Clouldless Labs"]
repository = "https://github.com/fluencelabs/marine"
license = "AGPL-3.0-only"
edition = "2021"
[[bin]]
name = "marine"
path = "src/main.rs"
[dependencies]
marine-it-generator = { path = "../../crates/it-generator", version = "0.18.0" }
marine-it-parser = { path = "../../crates/it-parser", version = "0.17.0" }
marine-module-info-parser = { path = "../../crates/module-info-parser", version = "0.16.0" }
cargo_toml = "0.15.2"
cargo-lock = "8.0.3"
cargo_metadata = "0.15.4"
semver = "1.0.20"
walrus = "0.20.1"
Inflector = "0.11.4"
toml = "0.7.2"
atty = "0.2.14"
thiserror = "1.0.50"
anyhow = "1.0.75"
check-latest = { version = "1.0.2", optional = true }
clap = "2.34.0"
exitfailure = "0.5.1"
serde = "1.0.147"
serde_json = "1.0.107"
crossterm = "0.27.0"
log = "0.4.20"
env_logger = "0.10.0"
[features]
check-latest = ["dep:check-latest"]