From e60a506f99586f0b870e552ae5ef383693613ac4 Mon Sep 17 00:00:00 2001 From: Ian Hamilton Date: Thu, 1 Aug 2024 14:13:48 -0400 Subject: [PATCH] fix(build): remove http from default-members http was moved out of didkit, so remove it from default-members to be able to compile. Also get rid of deprecated .cargo/config --- .cargo/config | 11 ----------- Cargo.toml | 2 +- 2 files changed, 1 insertion(+), 12 deletions(-) delete mode 100644 .cargo/config diff --git a/.cargo/config b/.cargo/config deleted file mode 100644 index 8fb9b987..00000000 --- a/.cargo/config +++ /dev/null @@ -1,11 +0,0 @@ -[target.i686-linux-android] -linker = "i686-linux-android19-clang" - -[target.armv7-linux-androideabi] -linker = "armv7a-linux-androideabi19-clang" - -[target.aarch64-linux-android] -linker = "aarch64-linux-android21-clang" - -[target.x86_64-linux-android] -linker = "x86_64-linux-android21-clang" diff --git a/Cargo.toml b/Cargo.toml index 640bb4e0..368cd981 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [workspace] members = ["cli", "lib", "lib/cbindings", "lib/web"] -default-members = ["http", "cli", "lib", "lib/cbindings"] +default-members = ["cli", "lib", "lib/cbindings"] # $ cargo release [workspace.metadata.release]