39 lines
1.2 KiB
TOML
39 lines
1.2 KiB
TOML
[package]
|
|
name = "rsproject"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
#gtk = { version = "0.6.6", package = "gtk4", features = ["v4_8"] }
|
|
gtk = {version = "0.8.1",package = "gtk4", features = ["v4_12"]}
|
|
adw = {version = "0.6.0", package = "libadwaita", features = ["v1_4"]}
|
|
#libadwaita = {package="libadwaita", version = "0.4.4", path="./libadwaita-0.4.4", features = ["v1_4"]}
|
|
# relm4 = { version = "0.6.2", features = ["libadwaita"]}
|
|
#relm4 = {package = "relm4", version="0.6.2", path="./Relm4-0.6.2/relm4", features=["libadwaita"]}
|
|
relm4 = { version = "0.8.1", features = ["libadwaita"]}
|
|
relm4-icons = "0.8.2"
|
|
|
|
#relm4-icons = { version = "0.6.0", features = ["add-filled"] }
|
|
chrono = "0.4.34"
|
|
tracker = "0.2.1"
|
|
git2 = "0.18.2"
|
|
validator = { version = "0.16.1",features=['derive'] }
|
|
lazy_static = "1.4.0"
|
|
regex = "1.10.3"
|
|
toml = "0.8.10"
|
|
dirs = "5.0.1"
|
|
serde = { version = "1.0.197",features = ["derive"] }
|
|
thiserror = "1.0.57"
|
|
once_cell = "1.19.0"
|
|
tokio = { version = "1.36.0",features = ["full"] }
|
|
rust-ini = "*"
|
|
gitlab = "0.1609.0"
|
|
url = "2.5.0"
|
|
pulldown-cmark = "0.10.0"
|
|
|
|
|
|
[build-dependencies]
|
|
glib-build-tools = "0.17.0"
|