-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (34 loc) · 915 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
37
[package]
name = "invil"
description = "A port of amboso to Rust"
version = "0.2.18"
edition = "2021"
license = "GPL-3.0-only"
homepage = "https://github.com/jgabaut/invil"
repository = "https://github.com/jgabaut/invil"
documentation = "https://github.com/jgabaut/amboso/wiki"
readme = "README.md"
exclude = [
".github/**",
"try-anvil/**",
"CODEOWNERS",
"bin/",
"stego.lock",
"kazoj",
"bench",
]
[features]
anvilPy = ["dep:flate2", "dep:tar", "dep:url"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.18", features = ["derive"] }
dirs = "5.0.1"
flate2 = { version = "1.0.33", optional = true }
git2 = "0.19.0"
is_executable = "1.0.3"
log = "0.4.22"
regex = "1.10.6"
simplelog = "0.12.2"
tar = { version = "0.4.41", optional = true }
toml = "0.8.19"
url = { version = "2.5.2", optional = true }