diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..575c95b --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "estring" +version = "0.1.1" diff --git a/Cargo.toml b/Cargo.toml index 20da45e..ae444ed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "estring" description = "A simple way to parse a string using type annotations" -version = "0.1.0" +version = "0.1.1" edition = "2018" authors = ["Dmitriy Pleshevskiy "] readme = "README.md" -repository = "https://github.com/pleshevskiy/itconfig-rs/tree/redesign/estring" +repository = "https://github.com/pleshevskiy/estring" license = "MIT" keywords = ["parsing", "type", "annotations", "customizable"] categories = ["data-structures", "parsing"] @@ -18,6 +18,7 @@ msrv = "1.51.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] +prim = ["number", "bool"] number = [] bool = [] vec = [] diff --git a/README.md b/README.md index b49dbaa..6d3344b 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,8 @@ estring = { version = "0.1", features = ["vec", "number"] } ## License -**MIT**. See [LICENSE](./LICENSE) to see the full text. +**MIT**. See [LICENSE](https://github.com/pleshevskiy/estring/LICENSE) to see +the full text. ## Contributors diff --git a/src/lib.rs b/src/lib.rs index e38b638..e8a89d2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,7 +5,7 @@ //! //! This package was originally designed for [enve] //! -//! [enve]: https://github.com/pleshevskiy/itconfig-rs +//! [enve]: https://github.com/pleshevskiy/itconfig-rs/tree/redesign //! //! ## Getting started //! @@ -48,9 +48,7 @@ //! //! ## License //! -//! **MIT**. -//! -//! See [LICENSE](./LICENSE) to see the full text. +//! **MIT**. See [LICENSE](https://github.com/pleshevskiy/estring/LICENSE) to see the full text. //! #![deny(clippy::pedantic)] #![allow(clippy::module_name_repetitions)]