https://github.com/watcol/somen
An asynchronous parser combinator for Rust.
https://github.com/watcol/somen
asynchronous parser parser-combinators rust
Last synced: 3 months ago
JSON representation
An asynchronous parser combinator for Rust.
- Host: GitHub
- URL: https://github.com/watcol/somen
- Owner: watcol
- License: mit
- Created: 2022-01-16T13:55:49.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-26T08:41:12.000Z (about 4 years ago)
- Last Synced: 2026-01-02T20:52:59.175Z (6 months ago)
- Topics: asynchronous, parser, parser-combinators, rust
- Language: Rust
- Homepage:
- Size: 396 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Somen

[](https://crates.io/crates/somen)
[](https://crates.io/crates/somen)
[](https://crates.io/crates/somen)
[](https://github.com/watcol/somen/blob/main/LICENSE)


Somen is an asynchronous LL(k) parser combinator.
## Usage
Add to your `Cargo.toml`:
```toml
[dependencies]
somen = "0.3"
```
If you are in the `no_std` environment:
```toml
[dependencies.somen]
version = "0.3"
default-features = false
features = ["alloc"] # If you have an allocator implementation
```
See [examples](https://github.com/watcol/somen/blob/main/examples) for more usage.
## Documentation
API Documentations are available on [here](https://docs.rs/somen).
## License
This program is licensed under the MIT license.
See [LICENSE](https://github.com/watcol/somen/blob/main/LICENSE) for details.