Skip to content

Commit

Permalink
Fix compilation issue with tower dependency (#70)
Browse files Browse the repository at this point in the history
* Fix compilation error in dexterous_developer_manager

Add `util` feature to `tower` dependency

* Fix missing semicolon in example
  • Loading branch information
MoutonSanglant authored Nov 9, 2024
1 parent c1a6a4e commit 74c0a77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ impl Plugin for MyPlugin {
reloadable_scope!(reloadable(app) {
app
.add_systems(Update, this_system_will_reload);
})
});
```

The [Simple Visual](./adapters/bevy_dexterous_developer/examples/simple_visual.rs) example shows the basic use of the library, and the [book](https://lee-orr.github.io/dexterous_developer/) has more info as well.
Expand Down
2 changes: 1 addition & 1 deletion dexterous_developer_manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ rmp-serde = { version = "1" }
blake3 = "1"
walkdir = "2"
tower-http = { version = "0.5.0", features = ["fs", "trace"] }
tower = "0.4"
tower = { version = "0.4", features = ["util"] }
dashmap = "6"
uuid = { version = "1.8", features = ["serde", "v4"] }
camino = "1"
Expand Down

0 comments on commit 74c0a77

Please sign in to comment.