Skip to content

Commit

Permalink
Release 0.1.23
Browse files Browse the repository at this point in the history
Fixes #96
  • Loading branch information
nagisa committed Sep 3, 2024
1 parent f7f1e58 commit c60bfc3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion psm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "psm"
version = "0.1.22"
version = "0.1.23"
authors = ["Simonas Kazlauskas <[email protected]>"]
build = "build.rs"
description = "Portable Stack Manipulation: stack manipulation and introspection routines"
Expand Down
2 changes: 1 addition & 1 deletion psm/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ fn find_assembly(
env: &str,
masm: bool,
) -> Option<(&'static str, bool)> {
println!("cargo::rustc-check-cfg=cfg(switchable_stack,asm,link_asm)");
println!("cargo:rustc-check-cfg=cfg(switchable_stack,asm,link_asm)");
match (arch, endian, os, env) {
// The implementations for stack switching exist, but, officially, doing so without Fibers
// is not supported in Windows. For x86_64 the implementation actually works locally,
Expand Down

0 comments on commit c60bfc3

Please sign in to comment.