-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (44 loc) · 1.32 KB
/
Copy pathCargo.toml
File metadata and controls
48 lines (44 loc) · 1.32 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
[workspace]
resolver = "2"
members = [
"crates/webapps-core",
"crates/webapps-exec",
"crates/webapps-viewer",
"crates/webapps-manager",
]
[workspace.package]
version = "4.0.6"
edition = "2021"
rust-version = "1.95"
license = "GPL-3.0-or-later"
repository = "https://github.com/biglinux/biglinux-webapps"
[workspace.dependencies]
gtk4 = { version = "0.11", features = ["v4_22"] }
libadwaita = { version = "0.9", features = ["v1_9"] }
webkit6 = { version = "0.6", features = ["v2_50"] }
glib = { package = "glib", version = "0.22" }
gio = { package = "gio", version = "0.22" }
gdk4 = { package = "gdk4", version = "0.11" }
gdk-pixbuf = { package = "gdk-pixbuf", version = "0.22" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
log = "0.4"
env_logger = "0.11"
anyhow = "1"
dirs = "6"
clap = { version = "4", features = ["derive"] }
big-os-kit = { path = "../big-rust-components/crates/big-os-kit" }
scraper = "0.26"
url = "2"
gettextrs = { package = "gettext-rs", version = "0.7", features = ["gettext-system"] }
toml = "0.8"
tempfile = "3"
[profile.release]
lto = "thin"
opt-level = "s"
strip = true
codegen-units = 1
# caveman: cargo-machete ignore list (virtual workspace — only workspace
# section is valid; per-crate ignores live in each crate's Cargo.toml).
[workspace.metadata.cargo-machete]
ignored = []