Skip to content

Commit 9e580a4

Browse files
CodingAnarchyclaude
andcommitted
Remove "full" feature - users typically choose one database backend
The "full" feature that enabled both PostgreSQL and MySQL simultaneously doesn't make practical sense since applications typically use a single database backend. This simplifies the feature set to focus on the two core database options. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent ba56dcb commit 9e580a4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ tokio-test = "0.4"
2222

2323
[package]
2424
name = "hammerwork"
25-
version = "0.2.0"
25+
version = "0.2.1"
2626
edition = "2021"
2727
description = "A high-performance, database-driven job queue for Rust with PostgreSQL and MySQL support, featuring dead job management and comprehensive statistics collection"
2828
license = "MIT"
@@ -49,7 +49,6 @@ async-trait = { workspace = true }
4949
default = []
5050
postgres = ["sqlx/postgres"]
5151
mysql = ["sqlx/mysql"]
52-
full = ["postgres", "mysql"]
5352

5453
[dev-dependencies]
5554
tokio-test = { workspace = true }

0 commit comments

Comments
 (0)