Skip to content

Commit

Permalink
chore: further bump cargo deps
Browse files Browse the repository at this point in the history
  • Loading branch information
dj95 committed Jun 11, 2024
1 parent 21a077f commit eed126b
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 32 deletions.
84 changes: 63 additions & 21 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,20 @@ bench = []
tracing = []

[dependencies]
zellij-tile = "0.40.0"
chrono = { version = "0.4.35", default-features = false }
regex = "1.10.0"
zellij-tile = "0.40.1"
chrono = { version = "0.4.38", default-features = false }
regex = "1.10.5"
chrono-tz = "0.9.0"
anyhow = "1.0.75"
anstyle = "1.0.2"
uuid = { version = "1.6.1", features = ["v4"] }
anyhow = "1.0.86"
anstyle = "1.0.7"
uuid = { version = "1.8.0", features = ["v4"] }
lazy_static = "1.4.0"
cached = { version = "0.46.1", features = ["wasm"] }
cached = { version = "0.51.3", features = ["wasm"] }
console = "0.15.8"
tracing-subscriber = "0.3.18"
tracing = "0.1.40"
kdl = "4.6.0"
rstest = "0.19.0"
rstest = "0.21.0"
itertools = "0.13.0"

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions src/render.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pub struct FormattedPart {
}

#[cached(
type = "SizedCache<String, FormattedPart>",
ty = "SizedCache<String, FormattedPart>",
create = "{ SizedCache::with_size(100) }",
convert = r#"{ (format.to_owned()) }"#
)]
Expand All @@ -49,7 +49,7 @@ pub fn formatted_part_from_string_cached(format: &str) -> FormattedPart {
}

#[cached(
type = "SizedCache<String, Vec<FormattedPart>>",
ty = "SizedCache<String, Vec<FormattedPart>>",
create = "{ SizedCache::with_size(100) }",
convert = r#"{ (config.to_owned()) }"#
)]
Expand Down Expand Up @@ -286,7 +286,7 @@ fn hex_to_rgb(s: &str) -> anyhow::Result<Vec<u8>> {
}

#[cached(
type = "SizedCache<String, Option<Color>>",
ty = "SizedCache<String, Option<Color>>",
create = "{ SizedCache::with_size(100) }",
convert = r#"{ (color.to_owned()) }"#
)]
Expand Down

0 comments on commit eed126b

Please sign in to comment.