From 93c8086e137047fc9baa7cbefb2404a8336811cf Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Fri, 11 Feb 2022 20:55:51 -0800 Subject: [PATCH] Rename token/rust to token/client --- Cargo.toml | 2 +- token/{rust => client}/Cargo.toml | 0 token/{rust => client}/src/client.rs | 0 token/{rust => client}/src/lib.rs | 0 token/{rust => client}/src/token.rs | 0 token/{rust => client}/tests/program-test.rs | 0 token/program-2022-test/Cargo.toml | 2 +- 7 files changed, 2 insertions(+), 2 deletions(-) rename token/{rust => client}/Cargo.toml (100%) rename token/{rust => client}/src/client.rs (100%) rename token/{rust => client}/src/lib.rs (100%) rename token/{rust => client}/src/token.rs (100%) rename token/{rust => client}/tests/program-test.rs (100%) diff --git a/Cargo.toml b/Cargo.toml index aa3500e7491..9f7f2491b5a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ members = [ "token/program", "token/program-2022", "token/program-2022-test", - "token/rust", + "token/client", "utils/cgen", "utils/test-client", "token-lending/flash_loan_receiver", diff --git a/token/rust/Cargo.toml b/token/client/Cargo.toml similarity index 100% rename from token/rust/Cargo.toml rename to token/client/Cargo.toml diff --git a/token/rust/src/client.rs b/token/client/src/client.rs similarity index 100% rename from token/rust/src/client.rs rename to token/client/src/client.rs diff --git a/token/rust/src/lib.rs b/token/client/src/lib.rs similarity index 100% rename from token/rust/src/lib.rs rename to token/client/src/lib.rs diff --git a/token/rust/src/token.rs b/token/client/src/token.rs similarity index 100% rename from token/rust/src/token.rs rename to token/client/src/token.rs diff --git a/token/rust/tests/program-test.rs b/token/client/tests/program-test.rs similarity index 100% rename from token/rust/tests/program-test.rs rename to token/client/tests/program-test.rs diff --git a/token/program-2022-test/Cargo.toml b/token/program-2022-test/Cargo.toml index 8751a809c00..e622b1c0ac5 100644 --- a/token/program-2022-test/Cargo.toml +++ b/token/program-2022-test/Cargo.toml @@ -16,4 +16,4 @@ solana-program-test = "=1.9.5" solana-sdk = "=1.9.5" spl-associated-token-account = { version = "1.0.5", path = "../../associated-token-account/program" } spl-token-2022 = { version = "0.2", path="../program-2022", features = ["no-entrypoint"] } -spl-token-client = { version = "0.0.1", path = "../rust" } +spl-token-client = { version = "0.0.1", path = "../client" }