-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (25 loc) · 848 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
[package]
name = "theory"
version = "0.1.0"
license = "MIT OR Apache-2.0"
edition = "2021"
homepage = "https://github.com/ayosec/theory/"
repository = "https://github.com/ayosec/theory.git"
description = "Documentation viewer (WIP)"
authors = [ "[email protected]" ]
exclude = [ ".git*" ]
[dependencies]
endiannezz = "0.6.5"
flate2 = { version = "1.0.24", optional = true }
leb128 = "0.2.5"
lru = { version = "0.8.1", default-features = false }
lz4_flex = { version = "0.9.5", optional = true }
num_enum = { version = "0.5.7", default-features = false }
thiserror = "1.0.36"
tinyvec = { version = "1.6.0", features = ["rustc_1_57", "alloc"] }
[dev-dependencies]
clap = { version = "4.0.10", default-features = false, features = ["derive", "std", "usage", "help"] }
[features]
default = ["deflate", "lz4"]
deflate = ["flate2"]
lz4 = ["lz4_flex"]