From b61cebc928528d45372416623d072372135e53e2 Mon Sep 17 00:00:00 2001 From: Matt Fellenz Date: Sat, 22 Jun 2024 13:46:34 -0700 Subject: [PATCH] Fix `default-features` casing --- crates/bot/Cargo.toml | 4 ++-- crates/worker/Cargo.toml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/crates/bot/Cargo.toml b/crates/bot/Cargo.toml index 489a72e..202558a 100644 --- a/crates/bot/Cargo.toml +++ b/crates/bot/Cargo.toml @@ -7,13 +7,13 @@ version = "0.1.0" anyhow = "1" bincode = "1" flate2 = "1" -poise = { version = "0.6", git = "https://github.com/serenity-rs/poise", default_features = false, features = [ +poise = { version = "0.6", git = "https://github.com/serenity-rs/poise", default-features = false, features = [ "cache", ] } protocol = { path = "../protocol" } rusqlite = { version = "0.31", features = ["bundled"] } serde = { version = "1", features = ["derive"] } -serenity = { version = "0.12", default_features = false, features = [ +serenity = { version = "0.12", default-features = false, features = [ "rustls_backend", ] } strip-ansi-escapes = "0.2.0" diff --git a/crates/worker/Cargo.toml b/crates/worker/Cargo.toml index ed5fa1a..b70b15e 100644 --- a/crates/worker/Cargo.toml +++ b/crates/worker/Cargo.toml @@ -4,11 +4,11 @@ name = "worker" version = "0.1.0" [dependencies] -ariadne = { version = "0.4", default_features = false } +ariadne = { version = "0.4", default-features = false } bincode = "1" bytemuck = "1" comemo = "0.4" -image = { version = "0.25", default_features = false, features = ["png"] } +image = { version = "0.25", default-features = false, features = ["png"] } protocol = { path = "../protocol" } thiserror = "1" time = "0.3" @@ -17,7 +17,7 @@ typst = "0.11" typst-render = "0.11" # downloading packages -zune-inflate = { version = "0.2", default_features = false, features = [ +zune-inflate = { version = "0.2", default-features = false, features = [ "gzip", "std", ] }