taler-rust

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

commit 2ffb96e46570d0bd5272e7f927f09bb07bb8f663
parent e83ede7f0a847f7335a178d7120768a10f70ab38
Author: Antoine A <>
Date:   Tue,  7 Jan 2025 16:21:11 +0100

common: refactor crates

Diffstat:
MCargo.toml | 2+-
Rtaler-api/Cargo.toml -> common/taler-api/Cargo.toml | 0
Rtaler-api/benches/subject.rs -> common/taler-api/benches/subject.rs | 0
Rtaler-api/src/auth.rs -> common/taler-api/src/auth.rs | 0
Rtaler-api/src/constants.rs -> common/taler-api/src/constants.rs | 0
Rtaler-api/src/db.rs -> common/taler-api/src/db.rs | 0
Rtaler-api/src/error.rs -> common/taler-api/src/error.rs | 0
Rtaler-api/src/lib.rs -> common/taler-api/src/lib.rs | 0
Rtaler-api/src/notification.rs -> common/taler-api/src/notification.rs | 0
Rtaler-api/src/subject.rs -> common/taler-api/src/subject.rs | 0
Rtaler-api/tests/api.rs -> common/taler-api/tests/api.rs | 0
Rtaler-api/tests/common/db.rs -> common/taler-api/tests/common/db.rs | 0
Rtaler-api/tests/common/mod.rs -> common/taler-api/tests/common/mod.rs | 0
Rtaler-api/tests/schema.sql -> common/taler-api/tests/schema.sql | 0
Rtaler-common/Cargo.toml -> common/taler-common/Cargo.toml | 0
Rtaler-common/benches/base32.rs -> common/taler-common/benches/base32.rs | 0
Rtaler-common/src/api_common.rs -> common/taler-common/src/api_common.rs | 0
Rtaler-common/src/api_params.rs -> common/taler-common/src/api_params.rs | 0
Rtaler-common/src/api_wire.rs -> common/taler-common/src/api_wire.rs | 0
Rtaler-common/src/config.rs -> common/taler-common/src/config.rs | 0
Rtaler-common/src/error_code.rs -> common/taler-common/src/error_code.rs | 0
Rtaler-common/src/lib.rs -> common/taler-common/src/lib.rs | 0
Rtaler-common/src/types.rs -> common/taler-common/src/types.rs | 0
Rtaler-common/src/types/amount.rs -> common/taler-common/src/types/amount.rs | 0
Rtaler-common/src/types/base32.rs -> common/taler-common/src/types/base32.rs | 0
Rtaler-common/src/types/payto.rs -> common/taler-common/src/types/payto.rs | 0
Rtaler-common/src/types/timestamp.rs -> common/taler-common/src/types/timestamp.rs | 0
Rtest-utils/Cargo.toml -> common/test-utils/Cargo.toml | 0
Rtest-utils/src/helpers.rs -> common/test-utils/src/helpers.rs | 0
Rtest-utils/src/json.rs -> common/test-utils/src/json.rs | 0
Rtest-utils/src/lib.rs -> common/test-utils/src/lib.rs | 0
Rtest-utils/src/routine.rs -> common/test-utils/src/routine.rs | 0
32 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/Cargo.toml b/Cargo.toml @@ -1,6 +1,6 @@ [workspace] resolver = "2" -members = ["taler-api", "taler-common", "test-utils"] +members = ["common/taler-api", "common/taler-common", "common/test-utils"] [profile.dev] debug = true diff --git a/taler-api/Cargo.toml b/common/taler-api/Cargo.toml diff --git a/taler-api/benches/subject.rs b/common/taler-api/benches/subject.rs diff --git a/taler-api/src/auth.rs b/common/taler-api/src/auth.rs diff --git a/taler-api/src/constants.rs b/common/taler-api/src/constants.rs diff --git a/taler-api/src/db.rs b/common/taler-api/src/db.rs diff --git a/taler-api/src/error.rs b/common/taler-api/src/error.rs diff --git a/taler-api/src/lib.rs b/common/taler-api/src/lib.rs diff --git a/taler-api/src/notification.rs b/common/taler-api/src/notification.rs diff --git a/taler-api/src/subject.rs b/common/taler-api/src/subject.rs diff --git a/taler-api/tests/api.rs b/common/taler-api/tests/api.rs diff --git a/taler-api/tests/common/db.rs b/common/taler-api/tests/common/db.rs diff --git a/taler-api/tests/common/mod.rs b/common/taler-api/tests/common/mod.rs diff --git a/taler-api/tests/schema.sql b/common/taler-api/tests/schema.sql diff --git a/taler-common/Cargo.toml b/common/taler-common/Cargo.toml diff --git a/taler-common/benches/base32.rs b/common/taler-common/benches/base32.rs diff --git a/taler-common/src/api_common.rs b/common/taler-common/src/api_common.rs diff --git a/taler-common/src/api_params.rs b/common/taler-common/src/api_params.rs diff --git a/taler-common/src/api_wire.rs b/common/taler-common/src/api_wire.rs diff --git a/taler-common/src/config.rs b/common/taler-common/src/config.rs diff --git a/taler-common/src/error_code.rs b/common/taler-common/src/error_code.rs diff --git a/taler-common/src/lib.rs b/common/taler-common/src/lib.rs diff --git a/taler-common/src/types.rs b/common/taler-common/src/types.rs diff --git a/taler-common/src/types/amount.rs b/common/taler-common/src/types/amount.rs diff --git a/taler-common/src/types/base32.rs b/common/taler-common/src/types/base32.rs diff --git a/taler-common/src/types/payto.rs b/common/taler-common/src/types/payto.rs diff --git a/taler-common/src/types/timestamp.rs b/common/taler-common/src/types/timestamp.rs diff --git a/test-utils/Cargo.toml b/common/test-utils/Cargo.toml diff --git a/test-utils/src/helpers.rs b/common/test-utils/src/helpers.rs diff --git a/test-utils/src/json.rs b/common/test-utils/src/json.rs diff --git a/test-utils/src/lib.rs b/common/test-utils/src/lib.rs diff --git a/test-utils/src/routine.rs b/common/test-utils/src/routine.rs