From 586f17d7730aa8dcc0d7f06904222885d1eda683 Mon Sep 17 00:00:00 2001 From: David Cosby Date: Thu, 7 Mar 2024 22:47:48 -0700 Subject: [PATCH] upgraded a handful of dependencies --- Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c0894a7..309aff4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,18 +12,18 @@ named_colors = [] [dependencies] glam = { version = "0.25", features = ["serde"] } serde = { version = "1.0", features = ["derive"] } -palette = { version = "0.7.3", default-features = false, features = [ +palette = { version = "0.7", default-features = false, features = [ "std", "approx", ] } -toml = "0.8.0" -smallvec = "1.11.2" +toml = "0.8" +smallvec = "1.13" compact_str = { version = "0.7", optional = true } -spin_sleep = { version = "1.1.1", optional = true } +spin_sleep = { version = "1.2", optional = true } [dev-dependencies] criterion = {version = "0.5.1", default-features = false, features = ["cargo_bench_support"]} -ratatui = "0.26.0" +ratatui = "0.26" crossterm = {version = "0.27.0"} rand = {version = "0.8.5", default-features = false, features = ["std", "std_rng"]}