Last active
May 26, 2020 07:04
-
-
Save nelhage/553cae9fa5d225630fb01382147c55aa to your computer and use it in GitHub Desktop.
cuviper/probe bug report
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file is automatically @generated by Cargo. | |
# It is not intended for manual editing. | |
[[package]] | |
name = "probe" | |
version = "0.2.1" | |
source = "git+https://github.com/cuviper/rust-libprobe.git#2354ccef6a2c2ac5b300ae13fbb9f9f193db1c90" | |
[[package]] | |
name = "probetest" | |
version = "0.1.0" | |
dependencies = [ | |
"probe", | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[package] | |
name = "probetest" | |
version = "0.1.0" | |
authors = ["Nelson Elhage <[email protected]>"] | |
edition = "2018" | |
[[bin]] | |
name = "probetest" | |
path = "main.rs" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
[dependencies] | |
[dependencies.probe] | |
git = "https://github.com/cuviper/rust-libprobe.git" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#![feature(asm)] | |
use probe::probe; | |
fn main() { | |
probe!(test_probe, entry); | |
println!("Hello, world!"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment