diff --git a/Cargo.toml b/Cargo.toml index fa70c1f..cfb7a0f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace] -members = ["aes", "cipher-core", "cipher-factory", "cli", "des", "web"] +members = ["aes", "cipher-core", "cipher-factory", "crypt", "des", "web"] resolver = "2" [workspace.package] diff --git a/cli/Cargo.toml b/crypt/Cargo.toml similarity index 95% rename from cli/Cargo.toml rename to crypt/Cargo.toml index 9c6016b..105f868 100644 --- a/cli/Cargo.toml +++ b/crypt/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "cli" +name = "crypt" version.workspace = true authors.workspace = true edition.workspace = true diff --git a/cli/src/args.rs b/crypt/src/args.rs similarity index 100% rename from cli/src/args.rs rename to crypt/src/args.rs diff --git a/cli/src/main.rs b/crypt/src/main.rs similarity index 100% rename from cli/src/main.rs rename to crypt/src/main.rs