-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
56 lines (52 loc) · 1.25 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "rpmspec"
description = "An RPM spec file parser"
version = "0.4.0"
authors = ["Fyra Labs <contact@fyralabs.com>", "madonuko <mado@fyralabs.com>"]
readme = "README.md"
repository = "https://github.com/rpm-rs/rpmspec-rs"
keywords = ["rpmspec", "rpm", "packaging"]
categories = ["parser-implementations", "parsing"]
edition = "2021"
license = "MIT"
exclude = [
"rpmexpr/",
"rpmspec-common/",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4.22"
regex = "1.6.0"
lazy_static = "1.4.0"
glob = "0.3.0"
tracing = "0.1.37"
# color-eyre = "0.6.2"
smartstring = "1.0.1"
base64 = "0.21.0"
rustyline = "12.0.0"
parking_lot = "0.12.1"
lazy_format = "2.0.0"
thiserror = "1.0.43"
url = "2.4.0"
num_cpus = "1.16.0"
chumsky = "0.9.2"
libc = "0.2.147"
rpmexpr = { path = "./rpmexpr", version = "0.1.0" }
rpmspec-common = { path = "./rpmspec-common", version = "0.1.0" }
bzip2 = "0.4.4"
flate2 = "1.0.30"
xz = "0.1.0"
zstd = "0.13.1"
mlua = { version = "0.9.8", features = ["luajit"] }
umask = "2.1.0"
itertools = "0.13.0"
paste = "1.0.15"
file-format = "0.25.0"
const_format = "0.2.32"
[workspace]
members = [
"rpmexpr",
"rpmspec-common",
]
[dev-dependencies]
tracing-subscriber = "0.3.18"