-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
36 lines (33 loc) · 856 Bytes
/
Cargo.toml
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
[package]
name = "pkgsrc"
description = "Library for interacting with a pkgsrc installation"
version = "0.3.1"
authors = ["Jonathan Perkin <jonathan@perkin.org.uk>"]
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"
edition = "2021"
[dependencies]
ar = "0.9.0"
blake2 = "0.10.6"
digest = "0.10.7"
flate2 = "1.0.33"
glob = "0.3.1"
indexmap = "2.5.0"
md-5 = "0.10.6"
ripemd = "0.1.3"
serde = { version = "1.0.210", optional = true, features = ["derive"] }
serde_with = { version = "3.9.0", optional = true }
sha1 = "0.10.6"
sha2 = "0.10.8"
tar = "0.4.41"
thiserror = "1.0.63"
[dev-dependencies]
regex = "1.10.6"
structopt = "0.3.26"
unindent = "0.2.3"
[features]
serde = ["dep:serde", "dep:serde_with"]