crates/live_kit_client2/Cargo.toml 🔗
@@ -10,7 +10,7 @@ path = "src/live_kit_client2.rs"
doctest = false
[[example]]
-name = "test_app"
+name = "test_app2"
[features]
test-support = [
Kirill Bulatov created
Get rid of the following warnings:
```
The example target `test_app` in package `live_kit_client2 v0.1.0 (/Users/someonetoignore/work/zed/zed/crates/live_kit_client2)` has the same output filename as the example target `test_app` in package `live_kit_client v0.1.0 (/Users/someonetoignore/work/zed/zed/crates/live_kit_client)`.
Colliding filename is: /Users/someonetoignore/work/zed/zed/target/debug/examples/test_app
The targets should have unique names.
Consider changing their names to be unique or compiling them separately.
This may become a hard error in the future; see <https://github.com/rust-lang/cargo/issues/6313>.
warning: output filename collision.
The example target `test_app` in package `live_kit_client2 v0.1.0 (/Users/someonetoignore/work/zed/zed/crates/live_kit_client2)` has the same output filename as the example target `test_app` in package `live_kit_client v0.1.0 (/Users/someonetoignore/work/zed/zed/crates/live_kit_client)`.
Colliding filename is: /Users/someonetoignore/work/zed/zed/target/debug/examples/test_app.dSYM
The targets should have unique names.
Consider changing their names to be unique or compiling them separately.
This may become a hard error in the future; see <https://github.com/rust-lang/cargo/issues/6313>.
---------------
warning: output filename collision.
The bin target `Zed` in package `zed2 v0.109.0 (/Users/administrator/actions-runner-1/_work/zed/zed/crates/zed2)` has the same output filename as the bin target `Zed` in package `zed v0.113.0 (/Users/administrator/actions-runner-1/_work/zed/zed/crates/zed)`.
Colliding filename is: /Users/administrator/actions-runner-1/_work/zed/zed/target/debug/Zed.dSYM
The targets should have unique names.
Consider changing their names to be unique or compiling them separately.
This may become a hard error in the future; see <https://github.com/rust-lang/cargo/issues/6313>.
```
as we plant to build *.dmg of both versions for a while.
Release Notes:
- N/A
crates/live_kit_client2/Cargo.toml | 2 +-
crates/live_kit_client2/examples/test_app2.rs | 0
crates/zed2/Cargo.toml | 2 +-
3 files changed, 2 insertions(+), 2 deletions(-)
@@ -10,7 +10,7 @@ path = "src/live_kit_client2.rs"
doctest = false
[[example]]
-name = "test_app"
+name = "test_app2"
[features]
test-support = [
@@ -11,7 +11,7 @@ path = "src/zed2.rs"
doctest = false
[[bin]]
-name = "Zed"
+name = "Zed2"
path = "src/main.rs"
[dependencies]