-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
45 lines (38 loc) · 1.01 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
[package]
name = "mol"
version = "0.3.0"
authors = ["Dmitry Dodzin <[email protected]>"]
edition = "2021"
categories = ["development-tools::cargo-plugins"]
license = "MIT"
description = "Package versioning with ease"
repository = "https://github.com/DmitryDodzin/mol"
readme = "README.md"
keywords = ["cargo", "versioning", "changeset", "changesets"]
[[bin]]
required-features = ["cargo"]
name = "cargo-mol"
[features]
default = ["cargo"]
cargo = [
"mol-cargo",
"tokio/macros",
"tokio/rt-multi-thread"
]
[dependencies]
mol-cargo = { path = 'crates/mol-cargo', version = "0.3", optional = true }
mol-core = { path = 'crates/mol-core', version = "0.3" }
anyhow = "1"
async-trait = "0.1"
clap = { version = "3", features = ["derive"] }
dialoguer = "0.10"
lazy_static = "1"
tokio = { version = "1", default-features = false, features = ["time"] }
[dev-dependencies]
cargo-husky = { version = "1", features = ["run-cargo-fmt","run-cargo-clippy"] }
[workspace]
members = [
"crates/*"
]
[profile.release]
opt-level = "s"