2018-03-10 14:55:23 +01:00
|
|
|
[package]
|
|
|
|
name = "irc-proto"
|
2020-05-07 22:31:41 +02:00
|
|
|
version = "0.14.0"
|
2018-03-10 15:53:41 +01:00
|
|
|
description = "The IRC protocol distilled."
|
2018-03-10 14:55:23 +01:00
|
|
|
authors = ["Aaron Weiss <awe@pdgn.co>"]
|
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
|
|
|
documentation = "https://docs.rs/irc-proto/"
|
|
|
|
repository = "https://github.com/aatxe/irc"
|
2019-10-16 03:12:29 +02:00
|
|
|
edition = "2018"
|
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]
|
2020-03-06 00:52:26 +01:00
|
|
|
encoding = "0.2.0"
|
|
|
|
thiserror = "1.0.0"
|
|
|
|
|
|
|
|
bytes = { version = "0.5.0", optional = true }
|
2019-08-27 15:05:51 +02:00
|
|
|
tokio = { version = "0.2.0", optional = true }
|
2020-03-06 00:52:26 +01:00
|
|
|
tokio-util = { version = "0.3.0", features = ["codec"], optional = true }
|