-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fe8cd03
commit 48b2b8f
Showing
7 changed files
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "rsfbclient" | ||
description = "Binds to official firebird client lib" | ||
version = "0.17.0" | ||
version = "0.18.0" | ||
authors = ["Luis Fernando Batels <[email protected]>", "Jairo H Wiethan <[email protected]>"] | ||
edition = "2021" | ||
repository = "https://github.com/fernandobatels/rsfbclient" | ||
|
@@ -13,10 +13,10 @@ readme = "README.md" | |
[dependencies] | ||
chrono = { version = "0.4.19", features = ["clock", "std"], default-features = false } | ||
lru-cache = "0.1.2" | ||
rsfbclient-core = { version = "0.17.0", path = "rsfbclient-core" } | ||
rsfbclient-native = { version = "0.17.0", path = "rsfbclient-native", optional = true } | ||
rsfbclient-rust = { version = "0.17.0", path = "rsfbclient-rust", optional = true } | ||
rsfbclient-derive = { version = "0.17.0", path = "rsfbclient-derive" } | ||
rsfbclient-core = { version = "0.18.0", path = "rsfbclient-core" } | ||
rsfbclient-native = { version = "0.18.0", path = "rsfbclient-native", optional = true } | ||
rsfbclient-rust = { version = "0.18.0", path = "rsfbclient-rust", optional = true } | ||
rsfbclient-derive = { version = "0.18.0", path = "rsfbclient-derive" } | ||
url = "2.2.1" | ||
percent-encoding = "2.1.0" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "r2d2_firebird" | ||
version = "0.17.0" | ||
version = "0.18.0" | ||
description = "Firebird support for the r2d2 connection pool" | ||
authors = [ | ||
"silvioprog <[email protected]>", | ||
|
@@ -13,9 +13,9 @@ categories = ["database"] | |
license = "MIT" | ||
|
||
[dependencies] | ||
rsfbclient = { version = "0.17", path = "../", default-features = false } | ||
rsfbclient-core = { version = "0.17", path = "../rsfbclient-core" } | ||
rsfbclient = { version = "0.18", path = "../", default-features = false } | ||
rsfbclient-core = { version = "0.18", path = "../rsfbclient-core" } | ||
r2d2 = "0.8.9" | ||
|
||
[dev-dependencies] | ||
rsfbclient = { version = "0.17", path = "../", features = ["pure_rust"], default-features = false } | ||
rsfbclient = { version = "0.18", path = "../", features = ["pure_rust"], default-features = false } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rsfbclient-core" | ||
version = "0.17.0" | ||
version = "0.18.0" | ||
description = "Core of firebird client lib" | ||
authors = ["Luis Fernando Batels <[email protected]>", "Jairo H Wiethan <[email protected]>"] | ||
edition = "2021" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rsfbclient-derive" | ||
version = "0.17.0" | ||
version = "0.18.0" | ||
description = "Derives and macros for rsfbclient" | ||
authors = ["Luis Fernando Batels <[email protected]>"] | ||
edition = "2021" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rsfbclient-native" | ||
version = "0.17.0" | ||
version = "0.18.0" | ||
description = "Native(using fbclient) implementation of firebird client lib" | ||
authors = ["Luis Fernando Batels <[email protected]>", "Jairo H Wiethan <[email protected]>"] | ||
edition = "2021" | ||
|
@@ -11,7 +11,7 @@ license = "MIT" | |
|
||
[dependencies] | ||
byteorder = "1.4.3" | ||
rsfbclient-core = { version = "0.17.0", path = "../rsfbclient-core" } | ||
rsfbclient-core = { version = "0.18.0", path = "../rsfbclient-core" } | ||
libloading = { version = "0.7.0", optional = true } | ||
|
||
[features] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rsfbclient-rust" | ||
version = "0.17.0" | ||
version = "0.18.0" | ||
description = "A pure Rust implementation of firebird client lib" | ||
authors = ["Luis Fernando Batels <[email protected]>", "Jairo H Wiethan <[email protected]>"] | ||
edition = "2021" | ||
|
@@ -19,7 +19,7 @@ num-bigint = "0.4.0" | |
num_enum = "0.5.1" | ||
pwhash = "1.0.0" | ||
rand = "0.8.3" | ||
rsfbclient-core = { version = "0.17.0", path = "../rsfbclient-core" } | ||
rsfbclient-core = { version = "0.18.0", path = "../rsfbclient-core" } | ||
sha-1 = "0.10.0" | ||
sha2 = "0.10.2" | ||
|
||
|