diff --git a/msmonitor/dynolog_npu/cli/src/Cargo.toml b/msmonitor/dynolog_npu/cli/src/Cargo.toml new file mode 100644 index 0000000000000000000000000000000000000000..5254fed26f6a680240d061882afd75391e424aa0 --- /dev/null +++ b/msmonitor/dynolog_npu/cli/src/Cargo.toml @@ -0,0 +1,23 @@ +[package] +name = "dyno" +version = "0.1.0" +edition = "2021" + +[dependencies] +anyhow = "1.0.57" +clap = { version = "3.1.0", features = ["derive"]} +serde_json = "1.0" + +# Make it work with conda +# See https://github.com/rust-lang/cargo/issues/6652 +[net] +git-fetch-with-cli = true + +[build] +rustflags = [ + "-C", "relocation_model=pie", + "-C", "link-args=-Wl,-z,now", + "-C", "link-args=-Wl,-z,relro", + "-C", "strip=symbols", + "-C", "overflow_checks" +] \ No newline at end of file