chore: change repository
This commit is contained in:
parent
7d58a94d5a
commit
ccd9095a01
5 changed files with 15 additions and 7 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/target
|
7
Cargo.lock
generated
Normal file
7
Cargo.lock
generated
Normal 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"
|
|
@ -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 = []
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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)]
|
||||||
|
|
Reference in a new issue