std::env::set_var safely
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml15
1 files changed, 15 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..708da8f
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,15 @@
+cargo-features = ["edition2024"]
+[package]
+name = "env"
+version = "1.0.0"
+edition = "2024"
+license = "MIT"
+description = "std::env::{`set_var`, `remove_var`} safely"
+keywords = ["environment", "safe"]
+categories = ["config", "os"]
+readme = "README.md"
+authors = ["bendn <[email protected]>"]
+repository = "https://github.com/bend-n/env"
+
+[dependencies]
+num_threads = "0.1.7"