ircparser/Cargo.toml

22 lines
618 B
TOML
Raw Normal View History

2022-07-29 22:50:11 +02:00
[package]
name = "ircparser"
2022-07-30 17:42:19 +02:00
description = "An IRC (RFC1459) parser and formatter, built in Rust."
2022-08-02 02:12:18 +02:00
version = "0.2.0"
2022-07-29 22:50:11 +02:00
edition = "2021"
2022-07-30 17:42:19 +02:00
authors = ["Ethan Henderson"]
readme = "README.md"
license = "BSD-3-Clause"
homepage = "https://github.com/parafoxia/ircparser"
repository = "https://github.com/parafoxia/ircparser"
documentation = "https://docs.rs/ircparser"
keywords = ["irc", "rfc", "rfc1459", "parse"]
categories = ["parser-implementations"]
2022-07-29 22:50:11 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2022-07-30 17:42:19 +02:00
[lib]
name = "ircparser"
2022-07-30 03:04:45 +02:00
[dev-dependencies]
collection_macros = "0.2.0"