Skip to content

Commit

Permalink
reorganized dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
yasamoka committed Sep 3, 2024
1 parent 89bc416 commit ae47048
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ all-features = true


[dependencies]
parking_lot = "0.12.3"
uuid = { version = "1.10.0", features = ["v4"] }

async-trait = { version = "0.1.77", optional = true }
bb8 = { version = "0.8.5", optional = true }
bb8-postgres = { version = "0.8.1", optional = true }
Expand All @@ -33,6 +30,7 @@ diesel-async = { version = "0.5.0", optional = true }
futures = { version = "0.3.30", optional = true }
mobc = { version = "0.8.4", optional = true }
mobc-postgres = { version = "0.8.0", optional = true }
parking_lot = "0.12.3"
r2d2 = { version = "0.8.10", optional = true }
r2d2_mysql = { version = "25.0.0", optional = true }
r2d2_postgres = { version = "0.18.1", optional = true }
Expand All @@ -43,35 +41,35 @@ sqlx = { version = "0.8.2", default-features = false, features = [
], optional = true }
tokio = { version = "1.36.0", optional = true }
tokio-postgres = { version = "0.7.10", optional = true }
uuid = { version = "1.10.0", features = ["v4"] }


[dev-dependencies]
async-graphql = "7.0.9"
async-graphql-poem = "7.0.9"
bb8 = "0.8.3"
bb8-postgres = "0.8.1"
diesel = { version = "2.2.4", features = ["mysql", "postgres", "r2d2"] }
diesel-async = { version = "0.5.0", features = ["bb8", "mysql", "postgres"] }
diesel_async_migrations = { git = "https://github.com/yasamoka/diesel_async_migrations", rev = "d7a1187" }
dotenvy = "0.15.7"
futures = "0.3.30"
mysql = "25.0.1"
poem = "3.0.4"
postgres = "0.19.8"
r2d2 = "0.8.10"
serde = "1.0.209"
serde_json = "1.0.114"
sqlx = { version = "0.8.2", default-features = false, features = [
"mysql",
"postgres",
"runtime-tokio",
] }
tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"] }
tokio-postgres = "0.7.10"
tokio-shared-rt = "0.1.0"
tokio-test = "0.4.4"

async-graphql = "7.0.9"
async-graphql-poem = "7.0.9"
poem = "3.0.4"
serde = "1.0.209"
serde_json = "1.0.114"
tokio-postgres = "0.7.10"
diesel_async_migrations = { git = "https://github.com/yasamoka/diesel_async_migrations", rev = "d7a1187" }


[features]
# DBMSes
Expand Down

0 comments on commit ae47048

Please sign in to comment.