forked from fables-tales/rubyfmt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (28 loc) · 764 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (28 loc) · 764 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
[workspace]
members = [
"librubyfmt",
]
[package]
name = "rubyfmt-main"
version = "0.14.1"
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"
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