28 lines
824 B
TOML
28 lines
824 B
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"] }
|
|
adw = { version = "0.4.3", package = "libadwaita", features = ["v1_4"]}
|
|
relm4 = { version = "0.6.2", features = ["libadwaita"]}
|
|
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 = "*"
|
|
|
|
[build-dependencies]
|
|
glib-build-tools = "0.17.0" |