-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (36 loc) · 965 Bytes
/
Copy pathCargo.toml
File metadata and controls
38 lines (36 loc) · 965 Bytes
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
[package]
name = "invil"
description = "A port of amboso to Rust"
version = "0.2.31"
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]
default = ["anvilPy", "anvilCustom"]
anvilPy = ["dep:flate2", "dep:tar", "dep:url"]
anvilCustom = []
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.6.1", features = ["derive"] }
dirs = "6.0.0"
flate2 = { version = "1.1.9", optional = true }
git2 = "0.21.0"
is_executable = "1.0.6"
log = "0.4.33"
regex = "1.12.4"
simplelog = "0.12.2"
tar = { version = "0.4.46", optional = true }
toml = "1.1.2"
url = { version = "2.5.8", optional = true }