-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (47 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
54 lines (47 loc) · 1.1 KB
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
48
49
50
51
52
53
54
[workspace]
members = [
"crates/ripsed",
"crates/ripsed-core",
"crates/ripsed-fs",
"crates/ripsed-json",
"crates/ripsed-cli",
"xtask",
]
resolver = "2"
[workspace.package]
version = "0.2.9"
edition = "2024"
license = "MIT OR Apache-2.0"
authors = ["ripsed contributors"]
repository = "https://github.com/dollspace-gay/ripsed"
rust-version = "1.93"
[workspace.dependencies]
# Internal crates
ripsed = { path = "crates/ripsed", version = "0.2.9" }
ripsed-core = { path = "crates/ripsed-core", version = "0.2.9" }
ripsed-fs = { path = "crates/ripsed-fs", version = "0.2.9" }
ripsed-json = { path = "crates/ripsed-json", version = "0.2.9" }
# Core dependencies
regex = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
toml = "1"
strsim = "0.11"
# File system
globset = "0.4"
ignore = "0.4"
rayon = "1"
memmap2 = "0.9"
tempfile = "3"
# CLI
clap = { version = "4", features = ["derive"] }
anstream = "1"
anstyle = "1"
# Platform
libc = "0.2"
# Dev / Test
proptest = "1"
assert_cmd = "2"
predicates = "3"
criterion = { version = "0.8", features = ["html_reports"] }