diff --git a/postgres-native-tls/Cargo.toml b/postgres-native-tls/Cargo.toml index 8180cd012..e020f30e4 100644 --- a/postgres-native-tls/Cargo.toml +++ b/postgres-native-tls/Cargo.toml @@ -1,27 +1,24 @@ [package] name = "postgres-native-tls" version = "0.5.0" -authors = ["Steven Fackler "] +authors = ["Steven Fackler ", "Julius de Bruijn "] edition = "2018" license = "MIT/Apache-2.0" -description = "TLS support for tokio-postgres via native-tls" -repository = "https://github.com/sfackler/rust-postgres" +description = "TLS support for prisma-tokio-postgres via native-tls" +repository = "https://github.com/pimeys/rust-postgres" readme = "../README.md" -[badges] -circle-ci = { repository = "sfackler/rust-postgres" } - [features] default = ["runtime"] -runtime = ["tokio-postgres/runtime"] +runtime = ["prisma-tokio-postgres/runtime"] [dependencies] futures = "0.3" native-tls = "0.2" tokio = "1.0" tokio-native-tls = "0.3" -tokio-postgres = { version = "0.7.0", path = "../tokio-postgres", default-features = false } +prisma-tokio-postgres = { version = "0.7.0", path = "../tokio-postgres", default-features = false } [dev-dependencies] tokio = { version = "1.0", features = ["full"] } -postgres = { version = "0.19.0", path = "../postgres" } +prisma-postgres = { version = "0.19.0", path = "../postgres" } diff --git a/postgres-protocol/Cargo.toml b/postgres-protocol/Cargo.toml index 1224c633d..98803c785 100644 --- a/postgres-protocol/Cargo.toml +++ b/postgres-protocol/Cargo.toml @@ -1,11 +1,11 @@ [package] -name = "postgres-protocol" +name = "prisma-postgres-protocol" version = "0.6.0" -authors = ["Steven Fackler "] +authors = ["Steven Fackler ", "Julius de Bruijn "] edition = "2018" description = "Low level Postgres protocol APIs" license = "MIT/Apache-2.0" -repository = "https://github.com/sfackler/rust-postgres" +repository = "https://github.com/pimeys/rust-postgres" readme = "../README.md" [dependencies] diff --git a/postgres-types/Cargo.toml b/postgres-types/Cargo.toml index 40edc621b..b4212f503 100644 --- a/postgres-types/Cargo.toml +++ b/postgres-types/Cargo.toml @@ -1,11 +1,11 @@ [package] -name = "postgres-types" +name = "prisma-postgres-types" version = "0.2.0" -authors = ["Steven Fackler "] +authors = ["Steven Fackler ", "Julius de Bruijn "] edition = "2018" license = "MIT/Apache-2.0" description = "Conversions between Rust and Postgres values" -repository = "https://github.com/sfackler/rust-postgres" +repository = "https://github.com/pimeys/rust-postgres" readme = "../README.md" keywords = ["database", "postgres", "postgresql", "sql"] categories = ["database"] @@ -23,8 +23,8 @@ with-time-0_2 = ["time-02"] [dependencies] bytes = "1.0" fallible-iterator = "0.2" -postgres-protocol = { version = "0.6.0", path = "../postgres-protocol" } -postgres-derive = { version = "0.4.0", optional = true, path = "../postgres-derive" } +prisma-postgres-protocol = { version = "0.6.0", path = "../postgres-protocol" } +prisma-postgres-derive = { version = "0.4.0", optional = true, path = "../postgres-derive" } bit-vec-06 = { version = "0.6", package = "bit-vec", optional = true } chrono-04 = { version = "0.4.16", package = "chrono", default-features = false, features = ["clock"], optional = true } diff --git a/postgres/Cargo.toml b/postgres/Cargo.toml index ed63d0c1a..eb02a3ac8 100644 --- a/postgres/Cargo.toml +++ b/postgres/Cargo.toml @@ -1,7 +1,7 @@ [package] -name = "postgres" +name = "prisma-postgres" version = "0.19.0" -authors = ["Steven Fackler "] +authors = ["Steven Fackler ", "Julius de Bruijn "] edition = "2018" license = "MIT/Apache-2.0" description = "A native, synchronous PostgreSQL client" @@ -17,9 +17,6 @@ harness = false [package.metadata.docs.rs] all-features = true -[badges] -circle-ci = { repository = "sfackler/rust-postgres" } - [features] with-bit-vec-0_6 = ["tokio-postgres/with-bit-vec-0_6"] with-chrono-0_4 = ["tokio-postgres/with-chrono-0_4"] @@ -33,7 +30,7 @@ with-time-0_2 = ["tokio-postgres/with-time-0_2"] bytes = "1.0" fallible-iterator = "0.2" futures = "0.3" -tokio-postgres = { version = "0.7.0", path = "../tokio-postgres" } +prisma-tokio-postgres = { version = "0.7.0", path = "../tokio-postgres" } tokio = { version = "1.0", features = ["rt", "time"] } log = "0.4" diff --git a/tokio-postgres/Cargo.toml b/tokio-postgres/Cargo.toml index 613af127f..368ed8a54 100644 --- a/tokio-postgres/Cargo.toml +++ b/tokio-postgres/Cargo.toml @@ -1,11 +1,11 @@ [package] -name = "tokio-postgres" +name = "prisma-tokio-postgres" version = "0.7.0" -authors = ["Steven Fackler "] +authors = ["Steven Fackler ", "Julius de Bruijn "] edition = "2018" license = "MIT/Apache-2.0" description = "A native, asynchronous PostgreSQL client" -repository = "https://github.com/sfackler/rust-postgres" +repository = "https://github.com/pimeys/rust-postgres" readme = "../README.md" keywords = ["database", "postgres", "postgresql", "sql", "async"] categories = ["database"] @@ -20,9 +20,6 @@ harness = false [package.metadata.docs.rs] all-features = true -[badges] -circle-ci = { repository = "sfackler/rust-postgres" } - [features] default = ["runtime"] runtime = ["tokio/net", "tokio/time"] @@ -46,8 +43,8 @@ parking_lot = "0.11" percent-encoding = "2.0" pin-project-lite = "0.2" phf = "0.8" -postgres-protocol = { version = "0.6.0", path = "../postgres-protocol" } -postgres-types = { version = "0.2.0", path = "../postgres-types" } +prisma-postgres-protocol = { version = "0.6.0", path = "../postgres-protocol" } +prisma-postgres-types = { version = "0.2.0", path = "../postgres-types" } socket2 = "0.3" tokio = { version = "1.0", features = ["io-util"] } tokio-util = { version = "0.6", features = ["codec"] }