-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (48 loc) · 1.24 KB
/
Copy pathCargo.toml
File metadata and controls
53 lines (48 loc) · 1.24 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
[workspace]
members = [".", "kv", "kv-derive"]
[package]
name = "pkgsrc"
description = "Rust interface to pkgsrc packages and infrastructure"
version = "0.13.0"
authors = ["Jonathan Perkin <[email protected]>"]
readme = "README.md"
keywords = ["pkgsrc"]
license = "ISC"
repository = "https://github.com/jperkin/pkgsrc-rs"
homepage = "https://github.com/jperkin/pkgsrc-rs"
documentation = "https://docs.rs/pkgsrc"
rust-version = "1.88"
edition = "2024"
[dependencies]
ar = "0.9.0"
blake2 = "0.10.6"
digest = "0.10.7"
flate2 = { version = "1.1.2", features = ["zlib-rs"], default-features = false }
glob = "0.3.3"
hashbrown = "0.17"
indexmap = { version = "2.11.0", features = ["serde"] }
md-5 = "0.10.6"
pkgsrc-kv = { path = "kv", version = "0.3.0" }
ripemd = "0.1.3"
serde = { version = "1.0.219", features = ["derive"], optional = true }
serde_with = { version = "3.14.0", optional = true }
sha1 = "0.10.6"
sha2 = "0.10.9"
tar = "0.4.44"
thiserror = "2.0.16"
zstd = "0.13"
[dev-dependencies]
anyhow = "1.0"
db185 = "0.3.0"
indoc = "2"
rayon = "1.10"
regex = "1.11.2"
serde_json = "1.0"
structopt = "0.3.26"
[features]
default = []
serde = ["dep:serde", "dep:serde_with", "pkgsrc-kv/serde"]
[profile.profiling]
inherits = "release"
debug = 2
strip = "none"