Skip to content

Commit c60bfc3

Browse files
committed
Release 0.1.23
Fixes #96
1 parent f7f1e58 commit c60bfc3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

psm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "psm"
3-
version = "0.1.22"
3+
version = "0.1.23"
44
authors = ["Simonas Kazlauskas <[email protected]>"]
55
build = "build.rs"
66
description = "Portable Stack Manipulation: stack manipulation and introspection routines"

psm/build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ fn find_assembly(
77
env: &str,
88
masm: bool,
99
) -> Option<(&'static str, bool)> {
10-
println!("cargo::rustc-check-cfg=cfg(switchable_stack,asm,link_asm)");
10+
println!("cargo:rustc-check-cfg=cfg(switchable_stack,asm,link_asm)");
1111
match (arch, endian, os, env) {
1212
// The implementations for stack switching exist, but, officially, doing so without Fibers
1313
// is not supported in Windows. For x86_64 the implementation actually works locally,

0 commit comments

Comments
 (0)