diff --git a/impl/rs/Cargo.lock b/impl/rs/Cargo.lock new file mode 100644 index 0000000..e208157 --- /dev/null +++ b/impl/rs/Cargo.lock @@ -0,0 +1,5 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +[[package]] +name = "uxid" +version = "0.0.1" diff --git a/impl/rs/Cargo.toml b/impl/rs/Cargo.toml new file mode 100644 index 0000000..a3c535d --- /dev/null +++ b/impl/rs/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "uxid" +version = "0.0.1" +description = "User eXperience based IDentifiers" +authors = ["JohnnyT "] +repository = "https://github.com/riddler/uxid" +license = "MIT" +readme = "../../README.md" +edition = "2018" + +keywords = ["uxid"] + +[dependencies] diff --git a/impl/rs/src/main.rs b/impl/rs/src/main.rs new file mode 100644 index 0000000..c971175 --- /dev/null +++ b/impl/rs/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("uxid coming soon"); +}