chore: update itertools; update zbus
This commit is contained in:
parent
57a5d9963a
commit
dc39564852
5 changed files with 9 additions and 9 deletions
10
Cargo.lock
generated
10
Cargo.lock
generated
|
@ -976,7 +976,7 @@ dependencies = [
|
||||||
"grass",
|
"grass",
|
||||||
"gtk",
|
"gtk",
|
||||||
"gtk-layer-shell",
|
"gtk-layer-shell",
|
||||||
"itertools 0.12.1",
|
"itertools 0.13.0",
|
||||||
"libc",
|
"libc",
|
||||||
"log",
|
"log",
|
||||||
"maplit",
|
"maplit",
|
||||||
|
@ -1690,9 +1690,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "itertools"
|
name = "itertools"
|
||||||
version = "0.12.1"
|
version = "0.13.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"either",
|
"either",
|
||||||
]
|
]
|
||||||
|
@ -2658,7 +2658,7 @@ dependencies = [
|
||||||
"chrono-tz",
|
"chrono-tz",
|
||||||
"eww_shared_util",
|
"eww_shared_util",
|
||||||
"insta",
|
"insta",
|
||||||
"itertools 0.12.1",
|
"itertools 0.13.0",
|
||||||
"jaq-core",
|
"jaq-core",
|
||||||
"jaq-interpret",
|
"jaq-interpret",
|
||||||
"jaq-parse",
|
"jaq-parse",
|
||||||
|
@ -3476,7 +3476,7 @@ dependencies = [
|
||||||
"derive_more",
|
"derive_more",
|
||||||
"eww_shared_util",
|
"eww_shared_util",
|
||||||
"insta",
|
"insta",
|
||||||
"itertools 0.12.1",
|
"itertools 0.13.0",
|
||||||
"lalrpop",
|
"lalrpop",
|
||||||
"lalrpop-util",
|
"lalrpop-util",
|
||||||
"maplit",
|
"maplit",
|
||||||
|
|
|
@ -22,7 +22,7 @@ extend = "1.2"
|
||||||
futures = "0.3.30"
|
futures = "0.3.30"
|
||||||
grass = { version = "0.13.1", default-features = false }
|
grass = { version = "0.13.1", default-features = false }
|
||||||
insta = "1.7"
|
insta = "1.7"
|
||||||
itertools = "0.12.1"
|
itertools = "0.13.0"
|
||||||
jaq-core = "1.5.1"
|
jaq-core = "1.5.1"
|
||||||
jaq-parse = "1.0.3"
|
jaq-parse = "1.0.3"
|
||||||
jaq-std = "1.6.0"
|
jaq-std = "1.6.0"
|
||||||
|
|
|
@ -26,7 +26,7 @@ gtk-layer-shell = { version = "0.8.1", optional = true }
|
||||||
gdkx11 = { version = "0.18", optional = true }
|
gdkx11 = { version = "0.18", optional = true }
|
||||||
x11rb = { version = "0.13.1", features = ["randr"], optional = true }
|
x11rb = { version = "0.13.1", features = ["randr"], optional = true }
|
||||||
|
|
||||||
zbus = { version = "3.7.0", default-features = false, features = ["tokio"] }
|
zbus = { version = "3.15.2", default-features = false, features = ["tokio"] }
|
||||||
ordered-stream = "0.2.0"
|
ordered-stream = "0.2.0"
|
||||||
|
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
|
|
|
@ -10,7 +10,7 @@ homepage = "https://github.com/elkowar/eww"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
gtk = "0.18.1"
|
gtk = "0.18.1"
|
||||||
zbus = { version = "3.7.0", default-features = false, features = ["tokio"] }
|
zbus = { version = "3.15.2", default-features = false, features = ["tokio"] }
|
||||||
dbusmenu-gtk3 = "0.1.0"
|
dbusmenu-gtk3 = "0.1.0"
|
||||||
|
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
|
|
|
@ -90,7 +90,7 @@ impl<I: Iterator<Item = Ast>> AstIterator<I> {
|
||||||
parse_key_values(self, true)
|
parse_key_values(self, true)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn put_back(&mut self, ast: Ast) {
|
pub fn put_back(&mut self, ast: Ast) -> Option<Ast> {
|
||||||
self.remaining_span.0 = ast.span().0;
|
self.remaining_span.0 = ast.span().0;
|
||||||
self.iter.put_back(ast)
|
self.iter.put_back(ast)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue