-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
25 lines (21 loc) · 826 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "const_irc_message_parser"
version = "0.9.0"
edition = "2021"
rust-version = "1.74" # supporting clippy lints section in Cargo.toml
license = "ISC"
description = "A 0 dependency, no_std, const-only parser for the IRC message protocol."
categories = ["no-std", "no-std::no-alloc", "parser-implementations"]
keywords = ["irc", "parser", "no-std"]
readme = "README.md"
exclude = ["target", "Cargo.lock"]
documentation = "https://docs.rs/const_irc_message_parser"
repository = "https://github.com/auronandace/const_irc_message_parser"
homepage = "https://github.com/auronandace/const_irc_message_parser"
[lib]
name = "const_irc_message_parser"
path = "src/lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[lints.clippy]
pedantic = "warn"