-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (31 loc) · 812 Bytes
/
Cargo.toml
File metadata and controls
38 lines (31 loc) · 812 Bytes
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
[workspace]
members = [
"librubyfmt",
]
[package]
name = "rubyfmt-main"
version = "0.12.0"
authors = ["Fable Tales <penelopedotzone@gmail.com>"]
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.32", features = ["derive"] }
ctrlc = { version = "3.2", features = ["termination"] }
ignore = "0.4.18"
regex = "1.11.1"
rubyfmt = { path = "./librubyfmt" }
similar = { version = "2.7.0", features = ["bytes"] }
[dev-dependencies]
assert_cmd = "2"
tempfile = "3.19"
libtest-mimic = "0.8.1"
criterion = { version = "0.8", features = ["html_reports"] }
[[test]]
name = "fixtures_test"
path = "tests/fixtures_test.rs"
harness = false
[[bench]]
name = "formatting"
harness = false
[profile.release]
debug = true