Skip to content

Commit

Permalink
remove unused dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
pacman82 committed Jan 10, 2024
1 parent cefc944 commit 3a521b5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
7 changes: 0 additions & 7 deletions Cargo.lock

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

4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## (next)

* Removed reexport of force_send_sync

## 4.1.0

* Introducing `Quirks` to document knoweldege about behaviour from drivers which is different from the ODBC specification. This can be helpful for generic applications in order to support databases if they want to invest in workarounds for bugs or percularities of ODBC drivers.
Expand Down
5 changes: 4 additions & 1 deletion odbc-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,14 @@ iodbc = ["odbc_version_3_5", "narrow", "odbc-sys/iodbc"]
default=["odbc_version_3_80"]

[dependencies]
# Low level bindings to ODBC API calls into libodbc.so
odbc-sys = { version = ">= 0.22, < 0.25", default-features = false }
# Used to generate code for the error type
thiserror = "1.0.56"
# Used as a log frontend to emit log messages for applications
log = "0.4.20"
# Interacting with UTF-16 texts for wide columns or wide function calls
widestring = "1.0.2"
force-send-sync = "1.1.0"

[target.'cfg(windows)'.dependencies]
# We use winit to display dialogs prompting for connection strings. We can deactivate default
Expand Down
3 changes: 1 addition & 2 deletions odbc-api/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@ pub use self::{
sleep::Sleep,
statement_connection::StatementConnection,
};
// Reexports
pub use force_send_sync;

/// Reexports `odbc-sys` as sys to enable applications to always use the same version as this
/// crate.
pub use odbc_sys as sys;
Expand Down

0 comments on commit 3a521b5

Please sign in to comment.