chore: unify package versions to workspace.package.version 2.2.5

This commit is contained in:
ASuciuX
2025-02-12 17:43:55 +02:00
parent fcffa7e5c1
commit b4e0157a56
7 changed files with 12 additions and 9 deletions

8
Cargo.lock generated
View File

@@ -422,7 +422,7 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
[[package]] [[package]]
name = "chainhook-postgres" name = "chainhook-postgres"
version = "0.1.0" version = "2.2.5"
dependencies = [ dependencies = [
"bytes", "bytes",
"deadpool-postgres", "deadpool-postgres",
@@ -435,7 +435,7 @@ dependencies = [
[[package]] [[package]]
name = "chainhook-sdk" name = "chainhook-sdk"
version = "0.12.12" version = "2.2.5"
dependencies = [ dependencies = [
"assert-json-diff", "assert-json-diff",
"base58", "base58",
@@ -2058,7 +2058,7 @@ dependencies = [
[[package]] [[package]]
name = "ordhook" name = "ordhook"
version = "1.0.0" version = "2.2.5"
dependencies = [ dependencies = [
"ansi_term", "ansi_term",
"anyhow", "anyhow",
@@ -2103,7 +2103,7 @@ dependencies = [
[[package]] [[package]]
name = "ordhook-cli" name = "ordhook-cli"
version = "2.0.0" version = "2.2.5"
dependencies = [ dependencies = [
"chainhook-sdk", "chainhook-sdk",
"chainhook-types", "chainhook-types",

View File

@@ -15,3 +15,6 @@ bitcoin = "0.31.2"
tokio-postgres = "0.7.10" tokio-postgres = "0.7.10"
deadpool-postgres = "0.14.0" deadpool-postgres = "0.14.0"
refinery = { version = "0.8", features = ["tokio-postgres"] } refinery = { version = "0.8", features = ["tokio-postgres"] }
[workspace.package]
version = "2.2.5"

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "chainhook-postgres" name = "chainhook-postgres"
version = "0.1.0" version.workspace = true
edition = "2021" edition = "2021"
[dependencies] [dependencies]

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "chainhook-sdk" name = "chainhook-sdk"
version = "0.12.12" version.workspace = true
description = "Stateless Transaction Indexing Engine for Stacks and Bitcoin" description = "Stateless Transaction Indexing Engine for Stacks and Bitcoin"
license = "GPL-3.0" license = "GPL-3.0"
edition = "2021" edition = "2021"

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "ordhook-cli" name = "ordhook-cli"
version = "2.0.0" version.workspace = true
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@@ -20,7 +20,7 @@ use std::time::Duration;
use std::{process, u64}; use std::{process, u64};
#[derive(Parser, Debug)] #[derive(Parser, Debug)]
#[clap(author, version, about, long_about = None)] #[clap(name = "ordhook", author, version, about, long_about = None)]
struct Opts { struct Opts {
#[clap(subcommand)] #[clap(subcommand)]
command: Command, command: Command,

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "ordhook" name = "ordhook"
version = "1.0.0" version.workspace = true
edition = "2021" edition = "2021"
[dependencies] [dependencies]