Skip to content

Commit

Permalink
Update version to 0.2.1 (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisllontop authored Apr 18, 2024
2 parents 7c11811 + f597ae8 commit 285ea75
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "keyv"
version = "0.2.0"
version = "0.2.1"
authors = ["Christian Llontop <[email protected]>"]
edition = "2021"
description = "Simple key-value storage with support for multiple backends"
Expand All @@ -18,13 +18,13 @@ thiserror = "1.0.58"
sqlx = { version = "0.7.4", optional = true }
log = "0.4.21"
redis = { version = "0.25.3", optional = true }
mongodb = { version = "2.8.2", optional = true }
mongodb = { version = "2.8.2", optional = true }

[features]
postgres = ["sqlx/postgres", "sqlx/runtime-tokio-rustls"]
mysql = ["sqlx/mysql", "sqlx/runtime-tokio-rustls"]
sqlite = ["sqlx/sqlite", "sqlx/runtime-tokio-native-tls"] # Add this line
redis = ["dep:redis"]
mongo = ["mongodb"]
full = ["postgres", "mysql", "sqlite", "redis", "mongo"]
mongo = ["mongodb"]
full = ["postgres", "mysql", "sqlite", "redis", "mongo"]
default = []

0 comments on commit 285ea75

Please sign in to comment.