diff --git a/Cargo.toml b/Cargo.toml index 908de65..a332939 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,7 +42,7 @@ bincode = { default-features = false, version = "1.0" } bytes = { default-features = false, version = "1.0" } criterion = { default-features = false, version = "0.5" } csv = "1" -diesel = { default-features = false, features = ["mysql"], version = "2.2.3" } +diesel = { default-features = false, features = ["mysql", "postgres"], version = "2.2.3" } futures = { default-features = false, version = "0.3" } rand = { default-features = false, features = ["getrandom"], version = "0.8" } rand-0_9 = { default-features = false, features = ["thread_rng"], package = "rand", version = "0.9" } @@ -62,7 +62,7 @@ align16 = [] # Force Decimal to be repr(align16) - the same as u128 borsh = ["dep:borsh", "std"] c-repr = [] # Force Decimal to be repr(C) db-diesel-mysql = ["diesel/mysql_backend", "std"] -db-diesel-postgres = ["diesel/postgres", "std"] +db-diesel-postgres = ["diesel/postgres_backend", "std"] db-diesel2-mysql = ["db-diesel-mysql"] db-diesel2-postgres = ["db-diesel-postgres"] db-postgres = ["dep:bytes", "dep:postgres-types", "std"]