Skip to content

Commit

Permalink
Fix default-features casing
Browse files Browse the repository at this point in the history
  • Loading branch information
mattfbacon committed Jun 22, 2024
1 parent 5ce0070 commit b61cebc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions crates/bot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions crates/worker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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",
] }
Expand Down

0 comments on commit b61cebc

Please sign in to comment.