Skip to content

Commit

Permalink
Commit v0.0.4 files
Browse files Browse the repository at this point in the history
  • Loading branch information
blaind committed Apr 11, 2021
1 parent 8d9baf5 commit 7d881fb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ keywords = ["strace", "syscall", "tracing", "linux"]
readme = "README.md"

[dependencies]
hstrace_derive = { path = "hstrace_derive" }
hstrace_derive = { path = "hstrace_derive", version = "0.0.1" }

# logging
log = "0.4.14"
Expand Down
10 changes: 5 additions & 5 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ fn main() {
.write_to_file(out_path.join("bindings.rs"))
.expect("Couldn't write bindings!");

std::process::Command::new("make")
.args(&["compile_main"])
.current_dir("data/c_code")
.spawn()
.expect("Build test C");
//std::process::Command::new("make")
// .args(&["compile_main"])
// .current_dir("data/c_code")
// .spawn()
// .expect("Build test C");
}
3 changes: 2 additions & 1 deletion hstrace_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "hstrace_derive"
version = "0.0.1"
description = "Internal derive library for htsrace"
license = "Apache-2.0/MIT"
edition = "2018"

Expand All @@ -12,4 +13,4 @@ proc-macro2 = "1.0.8"

[lib]
name = "hstrace_derive"
proc-macro = true
proc-macro = true
3 changes: 3 additions & 0 deletions hstrace_derive/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# hstrace_derive

See [hstrace](https://crates.io/crates/hstrace)

0 comments on commit 7d881fb

Please sign in to comment.