-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (38 loc) · 1.11 KB
/
Cargo.toml
File metadata and controls
44 lines (38 loc) · 1.11 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
[package]
name = "stackium"
author = "Julia Herbsthofer"
version = "0.2.1"
edition = "2021"
rust-version = "1.71.1"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["web", "gui"]
web = []
gui = ["dep:stackium_ui"]
#[target.'cfg(target_arch = "aarch64")'.dependencies]
#nix = { git = "https://github.com/hack3ric/nix.git", features = [
# "default",
# "personality",
# "ptrace",
# "fs",
#] }
[profile.release]
strip = true
[target.'cfg(not(target_arch = "aarch64"))'.dependencies]
nix = { version = "0.27.1", features = ["default", "personality", "ptrace", "fs"] }
[dependencies]
clap = { version = "4.1.6", features = ["derive"] }
dialoguer = { version = "0.10.3", features = ["completion", "default"] }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.93"
tiny_http = "0.12"
object = "0.31.1"
gimli = "0.31.0"
env_logger = "0.10.0"
schemars = "0.8.12"
stackium_shared = { path = "./stackium_shared" }
stackium_ui = { path = "./ui", optional = true }
include_dir = "0.7.3"
mime_guess = "2.0.4"
regex = "1.9.5"