Skip to content

Commit

Permalink
add ScanAll
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuxiujia committed Feb 25, 2022
1 parent db06f90 commit 71e48a0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions cdbc-mssql/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cdbc-mssql"
version = "0.1.15"
version = "0.1.18"
edition = "2021"
authors = ["[email protected]"]
description = "Rust Coroutine Database Driver Connectivity"
Expand All @@ -13,7 +13,7 @@ default = ["cdbc","offline", "time"]
offline = ["serde", "either/serde"]

[dependencies]
cdbc = { version = "0.1.14", path = "../", optional = true }
cdbc = { version = "0.1.18", path = "../", optional = true }
mco = "0.1"
either = "1.5.3"
once_cell = "1.9"
Expand Down
4 changes: 2 additions & 2 deletions cdbc-mysql/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cdbc-mysql"
version = "0.1.14"
version = "0.1.18"
edition = "2021"
authors = ["[email protected]"]
description = "Rust Coroutine Database Driver Connectivity"
Expand Down Expand Up @@ -28,7 +28,7 @@ json = ["serde", "serde_json"]
native-tls = ["cdbc/native-tls"]

[dependencies]
cdbc = { version = "0.1.14", path = "../", optional = true }
cdbc = { version = "0.1.18", path = "../", optional = true }

mco = "0.1"
hashlink = "0.7.0"
Expand Down
4 changes: 2 additions & 2 deletions cdbc-pg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cdbc-pg"
version = "0.1.14"
version = "0.1.18"
edition = "2021"
authors = ["[email protected]"]
description = "Rust Coroutine Database Driver Connectivity"
Expand Down Expand Up @@ -42,7 +42,7 @@ json = ["serde", "serde_json"]
offline = ["json"]

[dependencies]
cdbc = { version = "0.1.14", path = "../"}
cdbc = { version = "0.1.18", path = "../"}

atoi = "0.4.0"
smallvec = "1.4.0"
Expand Down
4 changes: 2 additions & 2 deletions cdbc-sqlite/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cdbc-sqlite"
version = "0.1.14"
version = "0.1.18"
edition = "2021"
authors = ["[email protected]"]
description = "Rust Coroutine Database Driver Connectivity"
Expand All @@ -22,7 +22,7 @@ all-types = [
[dependencies]

mco = "0.1"
cdbc = { version = "0.1.14", path = "../"}
cdbc = { version = "0.1.18", path = "../"}
serde={version = "1.0.130" ,features = ["derive", "rc"],optional = true}
serde_json = { version = "1.0.51", features = ["raw_value"], optional = true }
log = { version = "0.4.8", default-features = false }
Expand Down

0 comments on commit 71e48a0

Please sign in to comment.