Skip to content

Commit a095e51

Browse files
committed
Added Isolation Level for Transactions
1 parent 55ecf2a commit a095e51

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "psql-rust-driver"
3-
version = "0.1.0"
3+
version = "0.0.2"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -10,9 +10,14 @@ crate-type = ["cdylib"]
1010

1111
[dependencies]
1212
deadpool-postgres = "0.12.1"
13-
pyo3 = {version = "0.19.2", features = ["chrono"] }
13+
pyo3 = { version = "0.19.2", features = ["chrono"] }
1414
tokio = { version = "1.35.1", features = ["full"] }
15-
tokio-postgres = { version = "0.7.10", features = ["with-serde_json-1", "array-impls", "with-chrono-0_4", "with-uuid-1"] }
15+
tokio-postgres = { version = "0.7.10", features = [
16+
"with-serde_json-1",
17+
"array-impls",
18+
"with-chrono-0_4",
19+
"with-uuid-1",
20+
] }
1621
pyo3-asyncio = { version = "0.19.0", features = ["tokio-runtime"] }
1722
thiserror = "1.0.56"
1823
bytes = "1.5.0"

README.md

Whitespace-only changes.

0 commit comments

Comments
 (0)