-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 784 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 784 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
[package]
name = "legendaryos-store"
version = "0.2.0"
edition = "2021"
authors = ["LegendaryOS Team"]
description = "LegendaryOS Store — Flatpak + bootc software center v0.2"
[dependencies]
# renderer-software: no glutin, works natively on Wayland via softbuffer
slint = { version = "1.9", default-features = false, features = [
"std",
"compat-1-2",
"backend-winit",
"backend-winit-wayland",
"backend-winit-x11",
"renderer-software",
] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
reqwest = { version = "0.12", features = ["json"] }
[build-dependencies]
slint-build = "1.9"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true