diff options
author | SoniEx2 <endermoneymod@gmail.com> | 2022-05-07 12:18:38 -0300 |
---|---|---|
committer | SoniEx2 <endermoneymod@gmail.com> | 2022-05-07 12:18:38 -0300 |
commit | f21e8e1bea1e93aaa22e4d6baa3a490140977617 (patch) | |
tree | 3ea65a5e9ec5d4c1f59d9f813226b65f010e7f5c /Cargo.toml |
[Project] LtPtr
"Checked" raw pointers for Rust.
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..1cf8088 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "ltptr" +version = "0.1.0" +edition = "2021" +license = "CC0" +description = "Checked raw pointers." + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[features] +# our expectation is that the ppl using this want the CStr methods by default. +default = ["std"] +std = [] + +[dependencies] |