-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (26 loc) · 983 Bytes
/
Cargo.toml
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
[package]
name = "bazaar"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
libflatpak = {git = "https://gitlab.gnome.org/World/Rust/libflatpak-rs.git", rev="287473e2"}
appstream = {git = "https://github.com/bilelmoussaoui/appstream.git", rev="1a5ca157"}
rust-fuzzy-search = { git = "https://gitlab.com/EnricoCh/rust-fuzzy-search", rev="ee61779b9"}
iced = {version = "0.10.0", features=["advanced", "svg", "image", "tokio"]}
iced_native = "0.10.0"
iced_futures = "0.7.0"
iced_renderer = "0.1"
iced_core = "0.10.0"
iced_aw = {version="0.7", default-features=false, features=["wrap", "tabs"]}
cosmic-time = {git="https://github.com/pop-os/cosmic-time", rev = "71116b2", features = ['iced']}
once_cell = "1.15"
lazy_static = "1.4.0"
iced_style = "0.9"
[dependencies.rusqlite]
version = "0.28.0"
features = ["bundled"]
[profile.dev]
debut = true
icremental = true
panic = 'unwind'