-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
41 lines (36 loc) · 818 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
38
39
40
41
[package]
name = "uruntime"
version = "0.2.1"
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
[profile.dev]
opt-level = 0
[features]
default = [
"dwarfs",
"squashfs",
]
dwarfs = []
squashfs = []
mksquashfs = []
appimage = []
[build-dependencies]
indexmap = "2.6.0"
[dependencies]
which = "7.0.0"
cfg-if = "1.0.0"
goblin = "0.9.0"
num_cpus = "1.16.0"
signal-hook = "0.3.17"
nix = { version = "0.29.0", features = [ "fs", "signal" ] }
xxhash-rust = { version = "0.8.15", features = [ "xxh3" ] }
memfd-exec = { git = "https://github.com/VHSgunzo/memfd-exec.git" }