bevy/examples/ecs
François 57c021538e rename example change_detection to have unique name (#2419)
# Objective

Noticed a warning when running tests:
```
> cargo test --workspace
warning: output filename collision.
The example target `change_detection` in package `bevy_ecs v0.5.0 (/bevy/crates/bevy_ecs)` has the same output filename as the example target `change_detection` in package `bevy v0.5.0 (/bevy)`.
Colliding filename is: /bevy/target/debug/examples/change_detection
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 `change_detection` in package `bevy_ecs v0.5.0 (/bevy/crates/bevy_ecs)` has the same output filename as the example target `change_detection` in package `bevy v0.5.0 (/bevy)`.
Colliding filename is: /bevy/target/debug/examples/change_detection.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>.
```


## Solution

I renamed example `change_detection` to `component_change_detection`
2021-07-12 20:09:43 +00:00
..
component_change_detection.rs rename example change_detection to have unique name (#2419) 2021-07-12 20:09:43 +00:00
ecs_guide.rs Optional .system(), part 2 (#2403) 2021-06-29 19:47:46 +00:00
event.rs
fixed_timestep.rs Fixed a comment in the fixed timestep example (#2245) 2021-05-24 20:05:36 +00:00
hierarchy.rs
iter_combinations.rs Add a method iter_combinations on query to iterate over combinations of query results (#1763) 2021-05-17 23:33:47 +00:00
parallel_query.rs Make Commands and World apis consistent (#1703) 2021-03-23 00:23:40 +00:00
query_bundle.rs Adding WorldQuery for WithBundle (#2024) 2021-04-28 21:03:10 +00:00
removal_detection.rs
startup_system.rs
state.rs
system_chaining.rs
system_param.rs
system_sets.rs
timers.rs