Skip to content

Commit 668d145

Browse files
committed
Rename rr crate to wasm-crimp
1 parent 682a3e4 commit 668d145

File tree

11 files changed

+22
-22
lines changed

11 files changed

+22
-22
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,6 @@ wasmtime-slab = { path = "crates/slab", version = "=40.0.0", package = 'wasmtime
272272
wasmtime-jit-icache-coherence = { path = "crates/jit-icache-coherence", version = "=40.0.0", package = 'wasmtime-internal-jit-icache-coherence' }
273273
wasmtime-wit-bindgen = { path = "crates/wit-bindgen", version = "=40.0.0", package = 'wasmtime-internal-wit-bindgen' }
274274
wasmtime-math = { path = "crates/math", version = "=40.0.0", package = 'wasmtime-internal-math' }
275-
wasmtime-rr = { path = "crates/rr", version = "40.0.0" }
276275
wasmtime-unwinder = { path = "crates/unwinder", version = "=40.0.0", package = 'wasmtime-internal-unwinder' }
277276
wasmtime-wizer = { path = "crates/wizer", version = "40.0.0" }
278277

@@ -284,6 +283,7 @@ wiggle-generate = { path = "crates/wiggle/generate", version = "=40.0.0" }
284283
wasi-common = { path = "crates/wasi-common", version = "=40.0.0", default-features = false }
285284
pulley-interpreter = { path = 'pulley', version = "=40.0.0" }
286285
pulley-macros = { path = 'pulley/macros', version = "=40.0.0" }
286+
wasm-crimp = { path = "crates/wasm-crimp", version = "=40.0.0" }
287287

288288
# Cranelift crates in this workspace
289289
cranelift-assembler-x64 = { path = "cranelift/assembler-x64", version = "0.127.0" }
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
2-
name = "wasmtime-rr"
3-
version.workspace = true
2+
name = "wasm-crimp"
43
authors = ["Arjun Ramesh"]
4+
version.workspace = true
55
edition.workspace = true
66
rust-version.workspace = true
77
documentation = "https://docs.rs/wasmtime-rr"
File renamed without changes.
File renamed without changes.
File renamed without changes.

crates/wasmtime/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ wasmtime-slab = { workspace = true, optional = true }
3131
wasmtime-versioned-export-macros = { workspace = true }
3232
wasmtime-wmemcheck = { workspace = true, optional = true }
3333
wasmtime-math = { workspace = true }
34-
wasmtime-rr = { workspace = true, optional = true }
34+
wasm-crimp = { workspace = true, optional = true }
3535
pulley-interpreter = { workspace = true }
3636
target-lexicon = { workspace = true }
3737
wasmparser = { workspace = true }
@@ -347,7 +347,7 @@ std = [
347347
"dep:rustix",
348348
"wasmtime-jit-icache-coherence",
349349
"wasmtime-jit-debug?/std",
350-
"wasmtime-rr?/std"
350+
"wasm-crimp?/std"
351351
]
352352

353353
# Enables support for the `Store::call_hook` API which enables injecting custom
@@ -430,6 +430,6 @@ compile-time-builtins = ['dep:wasm-compose', 'dep:tempfile']
430430

431431
# Enable support for the common base infrastructure of record/replay
432432
rr = [
433-
"dep:wasmtime-rr",
433+
"dep:wasm-crimp",
434434
"component-model"
435435
]

0 commit comments

Comments
 (0)