nix-software-center/Cargo.toml

41 lines
1.2 KiB
TOML
Raw Normal View History

2022-08-27 00:48:43 +03:00
[package]
name = "nix-software-center"
2022-10-27 04:59:58 +03:00
version = "0.1.0"
2022-08-27 00:48:43 +03:00
edition = "2021"
default-run = "nix-software-center"
[dependencies]
2023-02-07 01:55:19 +03:00
relm4 = { version = "0.5.0-rc.2", features = ["libadwaita", "macros"] }
relm4-components = { package = "relm4-components", version = "0.5.0-rc.2"}
2022-10-28 02:19:24 +03:00
adw = { package = "libadwaita", version = "0.2", features = ["v1_2", "gtk_v4_6"] }
gtk = { package = "gtk4", version = "0.5", features = ["v4_6"] }
2022-11-01 21:27:22 +03:00
sourceview5 = { version = "0.5", features = ["v5_4"] }
2023-02-07 01:55:19 +03:00
tokio = { version = "1.25", features = ["rt", "macros", "time", "rt-multi-thread", "sync", "process"] }
tracker = "0.2"
2022-08-27 00:48:43 +03:00
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
2023-02-07 01:55:19 +03:00
nix-editor = "0.3.0"
2022-11-01 21:27:22 +03:00
nix-data = { git = "https://github.com/snowflakelinux/nix-data" }
2022-10-27 04:59:58 +03:00
sqlx = { version = "0.6", features = [ "runtime-tokio-native-tls" , "sqlite" ] }
2022-08-27 00:48:43 +03:00
2022-09-25 09:43:48 +03:00
html2pango = "0.5"
2022-08-27 00:48:43 +03:00
log = "0.4"
pretty_env_logger = "0.4"
flate2 = "1.0"
2023-02-07 01:55:19 +03:00
quick-xml = { version = "0.27", features = ["serialize"] }
2022-08-27 00:48:43 +03:00
rand = "0.8"
reqwest = { version = "0.11", features = ["blocking"] }
2023-02-07 01:55:19 +03:00
sha256 = "1.1"
2022-08-27 00:48:43 +03:00
image = "0.24"
2023-02-07 01:55:19 +03:00
spdx = "0.10"
2022-10-27 04:59:58 +03:00
anyhow = "1.0"
2022-08-27 00:48:43 +03:00
[workspace]
members = [".", "nsc-helper"]
default-members = [".", "nsc-helper"]