-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (43 loc) · 1.51 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
[package]
name = "cargo-release-oxc"
version = "0.0.26"
edition = "2021"
description = "Oxc release management"
authors = ["Boshen <[email protected]>"]
repository = "https://github.com/oxc-project/cargo-release-oxc"
keywords = []
categories = []
license = "MIT"
readme = "README.md"
[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
dbg_macro = "warn"
empty_drop = "warn"
exit = "warn"
empty_structs_with_brackets = "warn"
rc_buffer = "warn"
rc_mutex = "warn"
same_name_method = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[lib]
doctest = false
[[bin]]
name = "cargo-release-oxc"
path = "src/main.rs"
test = false
[dependencies]
anyhow = "1.0.95"
bpaf = { version = "0.9.16", features = ["derive", "batteries"] }
cargo_metadata = "0.19.1"
git-cliff-core = { version = "2.8.0", default-features = false, features = ["repo"] }
glob = "0.3.2"
toml_edit = { version = "0.22.23", features = ["parse"] }
crates_io_api = { version = "0.11.0", default-features = false, features = ["rustls"] }
toml = "0.8.20"
serde = "1.0.217"
serde_json = { version = "1.0.138", features = ["preserve_order"] }
regex = "1.11.1"