commit 2ffb96e46570d0bd5272e7f927f09bb07bb8f663 parent e83ede7f0a847f7335a178d7120768a10f70ab38 Author: Antoine A <> Date: Tue, 7 Jan 2025 16:21:11 +0100 common: refactor crates Diffstat:
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