forked from dburgener/cascade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (40 loc) · 1.26 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
[package]
name = "selinux-cascade"
version = "0.0.2"
description = "A High Level Language for specifying SELinux policy"
authors = ["Daniel Burgener <[email protected]>", "Mickael Salaun <[email protected]>"]
edition = "2018"
license = "MIT"
repository = "https://github.com/dburgener/cascade"
readme = "README.md"
keywords = [ "selinux" ]
[build-dependencies]
lalrpop = "0.19"
clap = { version = "4", features = ["derive"] }
clap_mangen = "0.2"
[dev-dependencies]
criterion = "0.4"
[dependencies]
backtrace = "0.3"
clap = { version = "4", features = ["derive"] }
codespan-reporting = "0.11"
flate2 = "1"
is-terminal = "0.4"
lalrpop-util = "0.19"
regex = "1"
quick-xml = "0.27"
sexp = "1.1"
tar = "0.4"
termcolor = "1.1"
thiserror = "1.0"
walkdir = "2"
# Work around https://github.com/lalrpop/lalrpop/issues/750
# This not a dependency of us, but of lalrpop, and lalrpop has the "features"
# option missing, which was masked by their inclusion of regex 1.7.x, but when
# regex 1.8.x was published, that exposed the lalrpop bug. There is a proposed
# fix PR in lalrpop. Once it's merged and a workaround is published, remove
# this
regex-syntax = { version = "0.6", default_features = false, features = ["unicode"] }
[[bench]]
name = "cascade_benchmarks"
harness = false