feat: ability to load the contents of a page on activate
This commit is contained in:
parent
a396560fc2
commit
6bbe3e97aa
9 changed files with 432 additions and 63 deletions
20
Cargo.toml
20
Cargo.toml
|
|
@ -7,15 +7,19 @@ rust-version = "1.65.0"
|
|||
|
||||
[dependencies]
|
||||
apply = "0.3.0"
|
||||
async-channel = "1.8.0"
|
||||
better-panic = "0.3.0"
|
||||
bytecheck = "0.6.9"
|
||||
color-eyre = "0.6.2"
|
||||
derive_setters = "0.1.5"
|
||||
dirs = "4.0.0"
|
||||
generator = "0.7.2"
|
||||
i18n-embed-fl = "0.6.5"
|
||||
once_cell = "1.17.0"
|
||||
regex = "1.7.1"
|
||||
rkyv = { version = "0.7.39", features = ["validation"]}
|
||||
rust-embed = "6.4.2"
|
||||
slotmap = "1.0.6"
|
||||
dirs = "4.0.0"
|
||||
rkyv = { version = "0.7.39", features = ["validation"]}
|
||||
bytecheck = "0.6.9"
|
||||
|
||||
[dependencies.i18n-embed]
|
||||
version = "0.13.8"
|
||||
|
|
@ -26,3 +30,13 @@ git = "https://github.com/pop-os/libcosmic"
|
|||
branch = "settings-improv"
|
||||
default-features = false
|
||||
features = ["debug", "winit", "dyrend"]
|
||||
|
||||
[profile.dev]
|
||||
opt-level = 3
|
||||
incremental = true
|
||||
|
||||
[profile.release]
|
||||
opt-level = "s"
|
||||
overflow-checks = true
|
||||
lto = "thin"
|
||||
incremental = false
|
||||
Loading…
Add table
Add a link
Reference in a new issue