diff options
Diffstat (limited to 'src/rust/c_string/Cargo.toml')
-rw-r--r-- | src/rust/c_string/Cargo.toml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/rust/c_string/Cargo.toml b/src/rust/c_string/Cargo.toml new file mode 100644 index 0000000000..dc7504856b --- /dev/null +++ b/src/rust/c_string/Cargo.toml @@ -0,0 +1,13 @@ +[package] +authors = ["The Tor Project"] +version = "0.0.1" +name = "c_string" + +[dependencies] +libc = "0.2.22" + +[lib] +name = "c_string" +path = "ffi.rs" +crate_type = ["rlib", "staticlib"] + |