-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (36 loc) · 1.02 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
[package]
name = "releaser"
version = "0.12.2"
description = "Crate or workspace releasing tool. All crates from workspace will be released on crates.io"
authors = ["egoroff <egoroff@gmail.com>"]
repository = "https://github.com/aegoroff/releaser"
homepage = "https://github.com/aegoroff/releaser"
keywords = ["release", "tool", "crate"]
license = "MIT"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
semver = "=1.0.23"
toml = "=0.8.19"
toml_edit = "=0.22.22"
serde = { version = "=1.0.215", features = ["derive"] }
serde_json = "=1.0.133"
vfs = "=0.12.0"
clap = { version = "=4.5.21", features = ["std", "color", "suggestions", "cargo", "derive"] }
clap_complete = "=4.5.38"
petgraph = "=0.6.5"
ansi_term = "=0.12.1"
handlebars = "=6.2.0"
sha2 = "=0.10.8"
hex = "=0.4.3"
url = "=2.5.4"
color-eyre = "=0.6.3"
[dev-dependencies]
mockall = "=0.13.1"
rstest = "=0.23.0"
[profile.release]
lto = true
strip = true
panic = 'abort'
[lints.rust]
unsafe_code = "forbid"