Skip to content

Commit ea10d4f

Browse files
authored
wasm-compose: remove im-rc dependency (#2459)
1 parent 5161161 commit ea10d4f

File tree

3 files changed

+3
-59
lines changed

3 files changed

+3
-59
lines changed

Cargo.lock

Lines changed: 2 additions & 57 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/wasm-compose/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ workspace = true
1717
[dependencies]
1818
anyhow = { workspace = true }
1919
heck = "0.5.0"
20-
im-rc = "15.1.0"
2120
indexmap = { workspace = true, features = ["std", "serde"] }
2221
log = { workspace = true }
2322
petgraph = "0.6.2"

crates/wasm-compose/src/graph.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ pub struct EncodeOptions {
474474

475475
#[derive(Clone, Debug, Default)]
476476
pub(crate) struct ResourceMapping {
477-
map: im_rc::HashMap<ResourceId, (ComponentId, ResourceId)>,
477+
map: HashMap<ResourceId, (ComponentId, ResourceId)>,
478478
}
479479

480480
impl ResourceMapping {

0 commit comments

Comments
 (0)