something something deps a bit
This commit is contained in:
parent
16eb77c20a
commit
5694f93307
2 changed files with 43 additions and 37 deletions
16
Cargo.lock
generated
16
Cargo.lock
generated
|
@ -227,6 +227,7 @@ dependencies = [
|
||||||
"color-thief",
|
"color-thief",
|
||||||
"event-listener",
|
"event-listener",
|
||||||
"futures",
|
"futures",
|
||||||
|
"getrandom",
|
||||||
"gettext-rs",
|
"gettext-rs",
|
||||||
"glib",
|
"glib",
|
||||||
"glib-build-tools",
|
"glib-build-tools",
|
||||||
|
@ -301,8 +302,6 @@ dependencies = [
|
||||||
"cexpr",
|
"cexpr",
|
||||||
"clang-sys",
|
"clang-sys",
|
||||||
"itertools",
|
"itertools",
|
||||||
"log",
|
|
||||||
"prettyplease",
|
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
"regex",
|
"regex",
|
||||||
|
@ -2009,6 +2008,7 @@ dependencies = [
|
||||||
"serde",
|
"serde",
|
||||||
"sha2",
|
"sha2",
|
||||||
"subtle",
|
"subtle",
|
||||||
|
"tracing",
|
||||||
"zbus 4.4.0",
|
"zbus 4.4.0",
|
||||||
"zeroize",
|
"zeroize",
|
||||||
"zvariant 4.2.0",
|
"zvariant 4.2.0",
|
||||||
|
@ -2177,16 +2177,6 @@ dependencies = [
|
||||||
"zerocopy",
|
"zerocopy",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "prettyplease"
|
|
||||||
version = "0.2.25"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "64d1ec885c64d0457d564db4ec299b2dae3f9c02808b8ad9c3a089c591b18033"
|
|
||||||
dependencies = [
|
|
||||||
"proc-macro2",
|
|
||||||
"syn",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "proc-macro-crate"
|
name = "proc-macro-crate"
|
||||||
version = "3.2.0"
|
version = "3.2.0"
|
||||||
|
@ -3111,6 +3101,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
|
checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"nu-ansi-term",
|
"nu-ansi-term",
|
||||||
|
"parking_lot",
|
||||||
"sharded-slab",
|
"sharded-slab",
|
||||||
"smallvec",
|
"smallvec",
|
||||||
"thread_local",
|
"thread_local",
|
||||||
|
@ -3811,7 +3802,6 @@ version = "5.1.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "a1200ee6ac32f1e5a312e455a949a4794855515d34f9909f4a3e082d14e1a56f"
|
checksum = "a1200ee6ac32f1e5a312e455a949a4794855515d34f9909f4a3e082d14e1a56f"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
|
||||||
"endi",
|
"endi",
|
||||||
"enumflags2",
|
"enumflags2",
|
||||||
"serde",
|
"serde",
|
||||||
|
|
64
Cargo.toml
64
Cargo.toml
|
@ -4,56 +4,72 @@ version = "0.1.0" # AUDREY_VERSION
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
adw = { version = "0.7.0", package = "libadwaita", features = ["v1_6"] }
|
adw = { version = "0.7", package = "libadwaita", features = ["v1_6"] }
|
||||||
bytes = "1.8.0"
|
glib = { version = "0.20", features = ["log"] }
|
||||||
chrono = { version = "0.4.38", features = ["serde", "std"], default-features = false }
|
gtk = { version = "0.9", package = "gtk4", features = ["gnome_47"] }
|
||||||
color-thief = "0.2.2"
|
|
||||||
event-listener = "5.3.1"
|
bytes = "1.8"
|
||||||
futures = "0.3.31"
|
chrono = { version = "0.4", features = [
|
||||||
gettext-rs = { version = "0.7.2", features = ["gettext-system"] }
|
"std",
|
||||||
glib = { version = "0.20.6", features = ["log", "v2_82"] }
|
"serde",
|
||||||
gtk = { version = "0.9.2", package = "gtk4", features = ["v4_16"] }
|
], default-features = false }
|
||||||
http-cache = { version = "0.20.0", default-features = false, features = [
|
color-thief = "0.2"
|
||||||
|
event-listener = "5.3"
|
||||||
|
futures = { version = "0.3", default-features = false, features = ["std"] }
|
||||||
|
getrandom = { features = ["linux_disable_fallback"], version = "0.2" }
|
||||||
|
gettext-rs = { version = "0.7", features = ["gettext-system"] }
|
||||||
|
http-cache = { version = "0.20", default-features = false, features = [
|
||||||
"cacache",
|
"cacache",
|
||||||
"cacache-tokio",
|
"cacache-tokio",
|
||||||
"manager-cacache",
|
"manager-cacache",
|
||||||
] }
|
] }
|
||||||
http-cache-reqwest = "0.15.0"
|
http-cache-reqwest = "0.15"
|
||||||
image = { version = "0.25.5", default-features = false, features = [
|
image = { version = "0.25", default-features = false, features = [
|
||||||
"jpeg",
|
"jpeg",
|
||||||
"png",
|
"png",
|
||||||
"webp",
|
"webp",
|
||||||
] }
|
] }
|
||||||
oo7 = "0.3.3"
|
oo7 = { version = "0.3", default-features = false, features = [
|
||||||
rand = "0.8"
|
"async-std",
|
||||||
reqwest = { version = "0.12.9", default-features = false, features = [
|
"native_crypto",
|
||||||
|
] }
|
||||||
|
rand = { version = "0.8", default-features = false, features = [
|
||||||
|
"std",
|
||||||
|
"std_rng",
|
||||||
|
"getrandom",
|
||||||
|
] }
|
||||||
|
reqwest = { version = "0.12", default-features = false, features = [
|
||||||
"charset",
|
"charset",
|
||||||
"gzip",
|
"gzip",
|
||||||
"json",
|
"json",
|
||||||
"http2",
|
"http2",
|
||||||
"rustls-tls-native-roots",
|
"rustls-tls-native-roots",
|
||||||
] }
|
] }
|
||||||
reqwest-middleware = { version = "0.4.0", features = [
|
reqwest-middleware = { version = "0.4", features = [
|
||||||
"json",
|
"json",
|
||||||
"http2",
|
"http2",
|
||||||
"charset",
|
"charset",
|
||||||
] }
|
] }
|
||||||
serde = { version = "1.0.214", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
serde_json = "1.0.133"
|
serde_json = "1.0"
|
||||||
tokio = { version = "1", features = ["parking_lot", "rt-multi-thread", "sync"] }
|
tokio = { version = "1", features = ["parking_lot", "rt-multi-thread", "sync"] }
|
||||||
tracing = { version = "0.1.40", default-features = false, features = [
|
tracing = { version = "0.1", default-features = false, features = [
|
||||||
"attributes",
|
"attributes",
|
||||||
"std",
|
"std",
|
||||||
] }
|
] }
|
||||||
tracing-subscriber = "0.3.18"
|
tracing-subscriber = { version = "0.3", features = ["parking_lot"] }
|
||||||
url = { version = "2.5.2", features = ["serde"] }
|
url = "2.5"
|
||||||
xdg = "2.5.2"
|
xdg = "2.5"
|
||||||
zbus = { version = "5.0.1", features = ["chrono"] }
|
zbus = { version = "5.0", default-features = false, features = ["async-io"] }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
bindgen = "0.70.1"
|
bindgen = { version = "0.70", default-features = false, features = ["runtime"] }
|
||||||
glib-build-tools = "0.20.0"
|
glib-build-tools = "0.20.0"
|
||||||
|
|
||||||
|
[features]
|
||||||
|
default = ["debug"]
|
||||||
|
debug = ["oo7/tracing"]
|
||||||
|
|
||||||
[profile.dev]
|
[profile.dev]
|
||||||
split-debuginfo = "unpacked"
|
split-debuginfo = "unpacked"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue