2018-03-10 14:55:23 +01:00
|
|
|
[package]
|
|
|
|
name = "irc-proto"
|
2024-03-19 00:34:00 +01:00
|
|
|
version = "1.0.0"
|
2020-07-23 19:38:14 +02:00
|
|
|
authors = ["Aaron Weiss <aweiss@hey.com>"]
|
2023-04-12 16:18:34 +02:00
|
|
|
edition = "2018"
|
|
|
|
rust-version = "1.60"
|
|
|
|
description = "The IRC protocol distilled."
|
|
|
|
documentation = "https://docs.rs/irc-proto/"
|
|
|
|
repository = "https://github.com/aatxe/irc"
|
2018-03-10 15:53:41 +01:00
|
|
|
license = "MPL-2.0"
|
|
|
|
keywords = ["irc", "protocol", "tokio"]
|
2018-03-10 15:59:29 +01:00
|
|
|
categories = ["network-programming"]
|
2018-03-10 15:53:41 +01:00
|
|
|
|
|
|
|
[badges]
|
|
|
|
travis-ci = { repository = "aatxe/irc" }
|
2018-03-10 14:55:23 +01:00
|
|
|
|
2018-03-10 18:10:40 +01:00
|
|
|
[features]
|
2020-03-06 00:52:26 +01:00
|
|
|
default = ["bytes", "tokio", "tokio-util"]
|
2018-03-10 18:10:40 +01:00
|
|
|
|
2018-03-10 14:55:23 +01:00
|
|
|
[dependencies]
|
2023-04-12 16:18:34 +02:00
|
|
|
encoding = "0.2.33"
|
|
|
|
thiserror = "1.0.40"
|
2020-03-06 00:52:26 +01:00
|
|
|
|
2023-04-12 16:18:34 +02:00
|
|
|
bytes = { version = "1.4.0", optional = true }
|
|
|
|
tokio = { version = "1.27.0", optional = true }
|
|
|
|
tokio-util = { version = "0.7.7", features = ["codec"], optional = true }
|