Compare commits

...

4 commits

Author SHA1 Message Date
a5aab43393 Add git repo URLs to README. 2024-11-20 00:42:58 +01:00
b57d5a9646 Bump version. 2024-11-19 23:09:59 +01:00
14b3adb9d7 Add shields to README. 2024-11-19 23:09:02 +01:00
3b0461eb3b Add LICENSE file. 2024-11-19 23:07:59 +01:00
4 changed files with 25 additions and 3 deletions

2
Cargo.lock generated
View file

@ -4,7 +4,7 @@ version = 3
[[package]]
name = "abnf-rfc5234"
version = "0.1.0-dev.0"
version = "0.1.0-dev.1"
dependencies = [
"pest",
"pest_derive",

View file

@ -6,7 +6,7 @@ readme = "README.md"
repository = "https://git.nstr.no/nstr-sw/abnf-rfc5234"
authors = ["Nstr Software AS"]
keywords = ["rfc5234", "abnf", "bnf", "backus-naur"]
version = "0.1.0-dev.0"
version = "0.1.0-dev.1"
edition = "2021"
[dependencies]

13
LICENSE Normal file
View 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.

View file

@ -1,5 +1,9 @@
# abnf-rfc5234
[![Crates.io](https://img.shields.io/crates/v/abnf-rfc5234?style=flat-square)](https://crates.io/crates/abnf-rfc5234)
[![Crates.io](https://img.shields.io/crates/d/abnf-rfc5234?style=flat-square)](https://crates.io/crates/abnf-rfc5234)
[![License](https://img.shields.io/badge/license-ISC-blue?style=flat-square)](LICENSE)
Rust library for working with Augmented BNF (ABNF) Syntax Specifications
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
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
None yet :^)
None yet :^)