-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
43 lines (38 loc) · 1015 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
40
41
42
43
[package]
name = "migrate-to-uv"
version = "0.6.0"
edition = "2021"
rust-version = "1.84"
license = "MIT"
authors = ["Mathieu Kniewallner <mathieu.kniewallner@gmail.com>"]
default-run = "migrate-to-uv"
[dependencies]
clap = { version = "=4.5.28", features = ["derive"] }
clap-verbosity-flag = "=3.0.2"
env_logger = "=0.11.6"
indexmap = { version = "=2.7.1", features = ["serde"] }
log = "=0.4.25"
owo-colors = "=4.1.0"
pep440_rs = "=0.7.3"
pep508_rs = "=0.9.2"
regex = "=1.11.1"
serde = { version = "=1.0.217", features = ["derive"] }
serde_json = "=1.0.138"
toml = "=0.8.20"
toml_edit = { version = "=0.22.23", features = ["display", "serde"] }
url = "=2.5.4"
[dev-dependencies]
insta = { version = "=1.42.1", features = ["filters"] }
insta-cmd = "=0.6.0"
rstest = "=0.24.0"
tempfile = "=3.16.0"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
too_many_lines = "allow"
[profile.dev.package]
insta.opt-level = 3
similar.opt-level = 3
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"