Compare commits
4 commits
v0.1.0-dev
...
main
Author | SHA1 | Date | |
---|---|---|---|
a5aab43393 | |||
b57d5a9646 | |||
14b3adb9d7 | |||
3b0461eb3b |
4 changed files with 25 additions and 3 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -4,7 +4,7 @@ version = 3
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "abnf-rfc5234"
|
name = "abnf-rfc5234"
|
||||||
version = "0.1.0-dev.0"
|
version = "0.1.0-dev.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"pest",
|
"pest",
|
||||||
"pest_derive",
|
"pest_derive",
|
||||||
|
|
|
@ -6,7 +6,7 @@ readme = "README.md"
|
||||||
repository = "https://git.nstr.no/nstr-sw/abnf-rfc5234"
|
repository = "https://git.nstr.no/nstr-sw/abnf-rfc5234"
|
||||||
authors = ["Nstr Software AS"]
|
authors = ["Nstr Software AS"]
|
||||||
keywords = ["rfc5234", "abnf", "bnf", "backus-naur"]
|
keywords = ["rfc5234", "abnf", "bnf", "backus-naur"]
|
||||||
version = "0.1.0-dev.0"
|
version = "0.1.0-dev.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|
13
LICENSE
Normal file
13
LICENSE
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
Copyright (c) 2024 Nstr Software AS
|
||||||
|
|
||||||
|
Permission to use, copy, modify, and/or distribute this software for any
|
||||||
|
purpose with or without fee is hereby granted, provided that the above
|
||||||
|
copyright notice and this permission notice appear in all copies.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||||
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||||
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||||
|
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||||
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||||
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||||
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
11
README.md
11
README.md
|
@ -1,5 +1,9 @@
|
||||||
# abnf-rfc5234
|
# abnf-rfc5234
|
||||||
|
|
||||||
|
[](https://crates.io/crates/abnf-rfc5234)
|
||||||
|
[](https://crates.io/crates/abnf-rfc5234)
|
||||||
|
[](LICENSE)
|
||||||
|
|
||||||
Rust library for working with Augmented BNF (ABNF) Syntax Specifications
|
Rust library for working with Augmented BNF (ABNF) Syntax Specifications
|
||||||
in accordance with RFC 5234 (<https://www.rfc-editor.org/rfc/rfc5234.html>).
|
in accordance with RFC 5234 (<https://www.rfc-editor.org/rfc/rfc5234.html>).
|
||||||
|
|
||||||
|
@ -14,6 +18,11 @@ but that they might pull it in as an indirect dependency if they use other
|
||||||
library crates that make use of this library crate for parsing of syntax
|
library crates that make use of this library crate for parsing of syntax
|
||||||
defined in other RFCs.
|
defined in other RFCs.
|
||||||
|
|
||||||
|
## git repo URLs
|
||||||
|
|
||||||
|
- Main repo: https://git.nstr.no/nstr-sw/abnf-rfc5234
|
||||||
|
- GitHub mirror: https://github.com/nstr-sw/abnf-rfc5234
|
||||||
|
|
||||||
## Notable library crates that use this library crate
|
## Notable library crates that use this library crate
|
||||||
|
|
||||||
None yet :^)
|
None yet :^)
|
||||||
|
|
Loading…
Add table
Reference in a new issue