diff --git a/Cargo.lock b/Cargo.lock index 352e127b..5d5d9e0e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -665,7 +665,7 @@ dependencies = [ [[package]] name = "psql-rust-driver" -version = "0.1.0" +version = "0.0.2" dependencies = [ "byteorder", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 8512d944..aaa5c275 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "psql-rust-driver" -version = "0.1.0" +version = "0.0.2" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -10,9 +10,14 @@ crate-type = ["cdylib"] [dependencies] deadpool-postgres = "0.12.1" -pyo3 = {version = "0.19.2", features = ["chrono"] } +pyo3 = { version = "0.19.2", features = ["chrono"] } tokio = { version = "1.35.1", features = ["full"] } -tokio-postgres = { version = "0.7.10", features = ["with-serde_json-1", "array-impls", "with-chrono-0_4", "with-uuid-1"] } +tokio-postgres = { version = "0.7.10", features = [ + "with-serde_json-1", + "array-impls", + "with-chrono-0_4", + "with-uuid-1", +] } pyo3-asyncio = { version = "0.19.0", features = ["tokio-runtime"] } thiserror = "1.0.56" bytes = "1.5.0" diff --git a/README.md b/README.md new file mode 100644 index 00000000..e69de29b