Skip to content

Commit

Permalink
Merge pull request #28 from Concordium/0.9.0-bump
Browse files Browse the repository at this point in the history
Bump version
  • Loading branch information
td202 authored Sep 5, 2024
2 parents aa8cdf0 + efc9285 commit 02b95b0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog for the transaction logger service

## Unreleased
## 0.9.0

- Moved the postgres feature from the Rust SDK into this crate as its own code.
- Updated the CI Rust version to 1.73
Expand Down
9 changes: 6 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "transaction-logger"
version = "0.8.0"
version = "0.9.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
concordium-rust-sdk = { path = "./deps/concordium-rust-sdk", version = "*" }
anyhow = "1"
tokio = {version = "1.8", features = ["full"]}
tokio = { version = "1.8", features = ["full"] }
thiserror = "1.0"
structopt = "0.3"
clap = "2.33"
Expand All @@ -17,7 +17,10 @@ tokio-postgres = { version = "^0.7.7", features = ["with-serde_json-1"] }
env_logger = "0.9"
log = "0.4"
http = "0.2"
tonic = { version = "0.10", features = ["tls", "tls-roots"] } # Use system trust roots.
tonic = { version = "0.10", features = [
"tls",
"tls-roots",
] } # Use system trust roots.
serde = { version = "1", features = ["derive"] }
futures = "0.3"
async-trait = "0.1.68"
Expand Down

0 comments on commit 02b95b0

Please sign in to comment.