-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (46 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
50 lines (46 loc) · 1.19 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
[package]
name = "aeris"
version = "0.0.0"
edition = "2024"
description = "Unbounded package management"
license = "MIT"
[features]
debug = ["iced/hot"]
[dependencies]
async-trait = "0.1.89"
env_logger = "0.11.8"
iced = { version = "0.14.0", default-features = false, features = [
"lazy",
"linux-theme-detection",
"tiny-skia",
"tokio",
"wayland",
"wgpu",
"x11",
] }
log = "0.4.29"
rfd = "0.15"
serde = { version = "1.0.228", features = ["derive"] }
sha2 = "0.10"
serde_json = "1.0"
soar-config = { git = "https://github.com/pkgforge/soar" }
soar-core = { git = "https://github.com/pkgforge/soar" }
soar-events = { git = "https://github.com/pkgforge/soar" }
soar-operations = { git = "https://github.com/pkgforge/soar" }
soar-utils = { git = "https://github.com/pkgforge/soar" }
thiserror = "2.0.18"
tokio = { version = "1.49.0", features = ["sync", "fs"] }
toml = "1.0.1"
toml_edit = "0.25.1"
shellexpand = "3.0"
ureq = { version = "3.2.0", features = ["json"] }
wasmtime = { version = "41", default-features = false, features = ["cranelift", "runtime"] }
which = "7.0"
[profile.dev.package."*"]
opt-level = 2
[profile.release]
opt-level = "z"
strip = true
lto = true
panic = "abort"
codegen-units = 1