taler-rust

GNU Taler code in Rust. Largely core banking integrations.
Log | Files | Refs | Submodules | README | LICENSE

commit 8699495029e894ebdb7677a79f173787cd41422b
parent f8078cd31e1046e7ffd587b8ac6bf27793590f99
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sat,  1 Aug 2026 00:25:55 +0200

common: give the taler-macros dependency a version requirement

Diffstat:
MCargo.toml | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Cargo.toml b/Cargo.toml @@ -42,7 +42,8 @@ taler-common = { path = "common/taler-common" } taler-api = { path = "common/taler-api" } taler-test-utils = { path = "common/taler-test-utils" } taler-build = { path = "common/taler-build" } -taler-macros = { path = "common/taler-macros" } +# Note: keep the literal in step with `workspace.package.version`. +taler-macros = { path = "common/taler-macros", version = "1.5.0" } failure-injection = { path = "common/failure-injection" } http-client = { path = "common/http-client" } hyper = { version = "1.8.1", features = ["client", "http1", "http2"] }