Skip to content

Commit 481cb08

Browse files
committed
Fix debug output for continuations
1 parent a02f3a4 commit 481cb08

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "fift"
33
description = "Rust implementation of the Fift esoteric language"
44
repository = "https://github.com/broxus/fift"
5-
version = "0.2.0"
5+
version = "0.2.1"
66
edition = "2024"
77
rust-version = "1.88"
88
include = ["src/**/*.rs", "src/**/*.fif", "LICENSE-*", "README.md"]
@@ -38,4 +38,4 @@ tycho-types = { version = "0.2.1", default-features = false, features = [
3838
] }
3939
tycho-vm = { version = "0.2.1", features = ["dump", "tracing"] }
4040

41-
fift-proc = { path = "./proc", version = "=0.2.0" }
41+
fift-proc = { path = "./proc", version = "=0.2.1" }

cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "fift-cli"
33
description = "A CLI for the Fift esoteric language interpreter"
44
repository = "https://github.com/broxus/fift"
5-
version = "0.2.0"
5+
version = "0.2.1"
66
edition = "2024"
77
rust-version = "1.88"
88
include = ["src/**/*.rs", "src/**/*.fif", "LICENSE", "README.md"]
@@ -21,5 +21,5 @@ rustyline = { version = "17.0", default-features = false }
2121
unicode-width = "0.2"
2222
tycho-vm = "0.2.0"
2323

24-
fift = { path = "..", version = "=0.2.0" }
24+
fift = { path = "..", version = "=0.2.1" }
2525
fift-libs = { path = "../libs", version = "0.2.0" }

proc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "fift-proc"
33
description = "Proc-macro helpers for fift"
44
repository = "https://github.com/broxus/fift"
5-
version = "0.2.0"
5+
version = "0.2.1"
66
edition = "2024"
77
include = ["src/**/*.rs", "../LICENSE-*", "../README.md"]
88
license = "MIT OR Apache-2.0"

src/core/cont.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -896,6 +896,6 @@ fn write_cont_name(
896896
if let Some(name) = d.resolve_name(cont) {
897897
f.write_str(name.trim_end())
898898
} else {
899-
write!(f, "<continuation {:?}>", cont as *const dyn FiftCont)
899+
write!(f, "<continuation {:?}>", cont as *const _ as *const ())
900900
}
901901
}

0 commit comments

Comments
 (0)