chore: change repository

This commit is contained in:
Dmitriy Pleshevskiy 2022-07-23 23:02:15 +03:00
parent 7d58a94d5a
commit ccd9095a01
Signed by: pleshevskiy
GPG Key ID: 1B59187B161C0215
5 changed files with 15 additions and 7 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

7
Cargo.lock generated Normal file
View File

@ -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"

View File

@ -1,11 +1,11 @@
[package] [package]
name = "estring" name = "estring"
description = "A simple way to parse a string using type annotations" description = "A simple way to parse a string using type annotations"
version = "0.1.0" version = "0.1.1"
edition = "2018" edition = "2018"
authors = ["Dmitriy Pleshevskiy <dmitriy@ideascup.me>"] authors = ["Dmitriy Pleshevskiy <dmitriy@ideascup.me>"]
readme = "README.md" readme = "README.md"
repository = "https://github.com/pleshevskiy/itconfig-rs/tree/redesign/estring" repository = "https://github.com/pleshevskiy/estring"
license = "MIT" license = "MIT"
keywords = ["parsing", "type", "annotations", "customizable"] keywords = ["parsing", "type", "annotations", "customizable"]
categories = ["data-structures", "parsing"] 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 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features] [features]
prim = ["number", "bool"]
number = [] number = []
bool = [] bool = []
vec = [] vec = []

View File

@ -49,7 +49,8 @@ estring = { version = "0.1", features = ["vec", "number"] }
## License ## 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 ## Contributors

View File

@ -5,7 +5,7 @@
//! //!
//! This package was originally designed for [enve] //! 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 //! ## Getting started
//! //!
@ -48,9 +48,7 @@
//! //!
//! ## License //! ## License
//! //!
//! **MIT**. //! **MIT**. See [LICENSE](https://github.com/pleshevskiy/estring/LICENSE) to see the full text.
//!
//! See [LICENSE](./LICENSE) to see the full text.
//! //!
#![deny(clippy::pedantic)] #![deny(clippy::pedantic)]
#![allow(clippy::module_name_repetitions)] #![allow(clippy::module_name_repetitions)]