Pin dependencies

This commit is contained in:
Chris Tsang 2022-07-11 23:53:24 +08:00
parent c56a37df51
commit 324c6c8793
2 changed files with 5 additions and 5 deletions

View File

@ -5,7 +5,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/).
## 0.9.0 - Pending
## 0.9.0 - 2022-07-11
### New Features

View File

@ -24,18 +24,18 @@ path = "src/lib.rs"
[dependencies]
async-stream = { version = "^0.3" }
async-trait = { version = "^0.1" }
chrono = { version = "^0", optional = true }
chrono = { version = "^0.4", optional = true }
time = { version = "^0.3", optional = true }
futures = { version = "^0.3" }
futures-util = { version = "^0.3" }
log = { version = "^0" }
tracing = { version = "0.1", features = ["log"] }
log = { version = "^0.4" }
tracing = { version = "^0.1", features = ["log"] }
rust_decimal = { version = "^1", optional = true }
sea-orm-macros = { version = "^0.8.0", path = "sea-orm-macros", optional = true }
sea-query = { version = "^0.26", features = ["thread-safe"] }
sea-strum = { version = "^0.23", features = ["derive", "sea-orm"] }
serde = { version = "^1.0", features = ["derive"] }
serde_json = { version = "^1", optional = true }
serde_json = { version = "^1.0", optional = true }
sqlx = { version = "^0.6", optional = true }
uuid = { version = "^1", features = ["serde", "v4"], optional = true }
ouroboros = "0.15"