-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (44 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
50 lines (44 loc) · 1.08 KB
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
cargo-features = ["panic-immediate-abort"]
[package]
name = "uruntime"
version = "0.5.7"
readme = "README.md"
license = "MIT"
repository = "https://github.com/VHSgunzo/uruntime"
description = "Universal RunImage and AppImage runtime with SquashFS and DwarFS supports"
edition = "2021"
[profile.release]
lto = true
debug = false
opt-level = "z"
strip = "symbols"
codegen-units = 1
panic = "immediate-abort"
[profile.dev]
opt-level = 0
[features]
default = [
"dwarfs",
"squashfs",
]
upx = []
lite = []
dwarfs = []
squashfs = []
appimage = []
[build-dependencies]
cfg-if = "1.0.4"
indexmap = "2.12.0"
zstd = { version = "0.13.3", default-features = false }
[dependencies]
which = "8.0.0"
cfg-if = "1.0.0"
goblin = "0.10.3"
procfs = "0.18.0"
num_cpus = "1.17.0"
signal-hook = "0.4.3"
zstd = { version = "0.13.3", default-features = false }
xxhash-rust = { version = "0.8.15", features = [ "xxh3" ] }
nix = { version = "0.31.2", features = [ "fs", "signal", "mount" ] }
dotenv = { git = "https://github.com/VHSgunzo/dotenv.git" }
memfd-exec = { git = "https://github.com/VHSgunzo/memfd-exec.git" }