Add Cargo.toml keys
This commit is contained in:
parent
c577099d8b
commit
8a962bd25c
12
Cargo.toml
12
Cargo.toml
|
@ -1,11 +1,21 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ircparser"
|
name = "ircparser"
|
||||||
|
description = "An IRC (RFC1459) parser and formatter, built in Rust."
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
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"]
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[lib]
|
||||||
|
name = "ircparser"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
collection_macros = "0.2.0"
|
collection_macros = "0.2.0"
|
||||||
|
|
Loading…
Reference in a new issue