-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (39 loc) · 855 Bytes
/
Cargo.toml
File metadata and controls
42 lines (39 loc) · 855 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
39
40
41
42
[workspace]
members = ["whitespace-core", "whitespace-cli"]
resolver = "2"
[workspace.package]
version = "0.4.1"
edition = "2021"
authors = ["DocSpring"]
license = "MIT"
repository = "https://github.com/DocSpring/whitespace"
homepage = "https://github.com/DocSpring/whitespace"
[workspace.dependencies]
# Core dependencies
anyhow = "1"
thiserror = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
ts-rs = "11.0"
regex = "1.11"
bstr = "1"
ignore = "0.4"
globset = "0.4"
walkdir = "2.5"
content_inspector = "0.2"
memmap2 = "0.9"
rayon = "1.10"
similar = "2.5"
comfy-table = "7"
nu-ansi-term = "0.50"
tempfile = "3"
sha2 = "0.10"
clap = { version = "4.5", features = ["derive", "cargo", "env"] }
once_cell = "1.19"
# Dev dependencies
proptest = "1.4"
insta = "1.39"
assert_cmd = "2"
predicates = "3"
assert_fs = "1"
criterion = "0.7"