Skip to content

Commit

Permalink
Update deps and crate version
Browse files Browse the repository at this point in the history
  • Loading branch information
bobozaur committed Mar 15, 2024
1 parent 410c915 commit 0bfffe9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
## [0.7.4] - 2024-03-15

### Added
- [#25](https://github.com/bobozaur/sqlx-exasol/pull/25): ETL module refactor based on `hyper`.
Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sqlx-exasol"
version = "0.7.3"
version = "0.7.4"
edition = "2021"
authors = ["bobozaur"]
description = "Exasol driver for the SQLx framework."
Expand Down Expand Up @@ -39,20 +39,20 @@ etl_native_tls = ["dep:native-tls", "dep:rcgen", "etl"]

[dependencies]
rand = "0.8.5"
base64 = "0.21.2"
base64 = "0.22.0"
thiserror = "1.0.30"
url = "2.2.2"
rsa = "0.9.2"
async-tungstenite = "0.24.0"
async-tungstenite = "0.25.0"
futures-io = "0.3.28"
futures-util = "0.3.28"
futures-core = "0.3.28"
serde_json = { version = "1.0.100", features = ["raw_value"] }
serde = { version = "1.0.169", features = ["derive"] }
pin-project = "1.1.2"
lru = "0.12.0"
sqlx-core = "0.7.3"
sqlx-macros-core = "0.7.3"
sqlx-core = "0.7.4"
sqlx-macros-core = "0.7.4"
tracing = { version = "0.1.37", features = ["log"] }
arrayvec = "0.7.4"
rcgen = { version = "0.12.0", optional = true }
Expand Down Expand Up @@ -81,7 +81,7 @@ bytes = { version = "1.5", optional = true }
futures-channel = { version = "0.3.30", optional = true }

[dev-dependencies]
sqlx = { version = "0.7.3", features = [
sqlx = { version = "0.7.4", features = [
"runtime-tokio",
"tls-native-tls",
"migrate",
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ Inspired by [Py-Exasol](https://github.com/exasol/pyexasol) and based on the (no
>
> With that in mind, please favor using a fixed version of `sqlx` and `sqlx-exasol` in `Cargo.toml` to avoid issues, such as:
> ```toml
> sqlx = "=0.7.3"
> sqlx-exasol = "=0.7.3"
> sqlx = "=0.7.4"
> sqlx-exasol = "=0.7.4"
> ```
Expand Down

0 comments on commit 0bfffe9

Please sign in to comment.