Skip to content

Commit

Permalink
Added Isolation Level for Transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
chandr-andr committed Feb 13, 2024
1 parent 55ecf2a commit a095e51
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 8 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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"
Expand Down
Empty file added README.md
Empty file.

0 comments on commit a095e51

Please sign in to comment.