2022-07-23 22:36:22 +03:00
|
|
|
|
# EString
|
|
|
|
|
|
2022-07-25 13:23:33 +03:00
|
|
|
|
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/pleshevskiy/estring/CI?label=tests&logo=github&style=flat-square)](https://github.com/pleshevskiy/estring/actions/workflows/ci.yml)
|
2022-07-24 00:04:09 +03:00
|
|
|
|
[![docs.rs](https://img.shields.io/docsrs/estring?style=flat-square)](https://docs.rs/estring)
|
|
|
|
|
[![Crates.io](https://img.shields.io/crates/v/estring?style=flat-square)](https://crates.io/crates/estring)
|
|
|
|
|
[![Crates.io](https://img.shields.io/crates/l/estring?style=flat-square)](https://github.com/pleshevskiy/estring/LICENSE)
|
|
|
|
|
[![unsafe forbidden](https://img.shields.io/badge/unsafe-forbidden-success.svg?style=flat-square)](https://github.com/rust-secure-code/safety-dance/)
|
|
|
|
|
[![Matrix](https://img.shields.io/matrix/enve_team:matrix.org?label=matrix&style=flat-square)](https://matrix.to/#/!yZalHbWfGRWOMaetSn:matrix.org?via=matrix.org)
|
|
|
|
|
|
2022-07-23 22:36:22 +03:00
|
|
|
|
A simple way to parse a string using type annotations.
|
|
|
|
|
|
|
|
|
|
This package was originally designed for [enve]
|
|
|
|
|
|
2022-07-24 23:22:57 +03:00
|
|
|
|
[enve]: https://github.com/pleshevskiy/enve
|
2022-07-23 22:36:22 +03:00
|
|
|
|
|
|
|
|
|
## Getting started
|
|
|
|
|
|
|
|
|
|
```rust
|
|
|
|
|
use estring::{SepVec, EString};
|
|
|
|
|
|
|
|
|
|
type PlusVec<T> = SepVec<T, '+'>;
|
|
|
|
|
type MulVec<T> = SepVec<T, '*'>;
|
|
|
|
|
|
|
|
|
|
fn main() -> Result<(), estring::ParseError> {
|
|
|
|
|
let res = EString::from("10+5*2+3")
|
|
|
|
|
.parse::<PlusVec<MulVec<f32>>>()?
|
|
|
|
|
.iter()
|
|
|
|
|
.map(|m| m.iter().product::<f32>())
|
|
|
|
|
.sum::<f32>();
|
|
|
|
|
|
|
|
|
|
assert_eq!(res, 23.0);
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
You can use custom types as annotations! Just implement `TryFrom<EString>`!
|
|
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
|
|
**The MSRV is 1.51.0**
|
|
|
|
|
|
|
|
|
|
Add `estring = { version = "0.1", features = ["vec", "number"] }` as a
|
|
|
|
|
dependency in `Cargo.toml`.
|
|
|
|
|
|
|
|
|
|
`Cargo.toml` example:
|
|
|
|
|
|
|
|
|
|
```toml
|
|
|
|
|
[package]
|
|
|
|
|
name = "my-crate"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
authors = ["Me <user@rust-lang.org>"]
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
estring = { version = "0.1", features = ["vec", "number"] }
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
2022-07-23 23:02:15 +03:00
|
|
|
|
**MIT**. See [LICENSE](https://github.com/pleshevskiy/estring/LICENSE) to see
|
|
|
|
|
the full text.
|
2022-07-23 22:36:22 +03:00
|
|
|
|
|
|
|
|
|
## Contributors
|
|
|
|
|
|
|
|
|
|
[pleshevskiy](https://github.com/pleshevskiy) (Dmitriy Pleshevskiy) – creator,
|
|
|
|
|
maintainer.
|