Started splitting out proto into its own crate.
This commit is contained in:
parent
a8a48bf4a1
commit
991e030a4f
14 changed files with 76 additions and 21 deletions
24
irc-proto/Cargo.toml
Normal file
24
irc-proto/Cargo.toml
Normal file
|
@ -0,0 +1,24 @@
|
|||
[package]
|
||||
name = "irc-proto"
|
||||
version = "0.1.0"
|
||||
authors = ["Aaron Weiss <awe@pdgn.co>"]
|
||||
|
||||
[dependencies]
|
||||
bufstream = "0.1"
|
||||
bytes = "0.4"
|
||||
chrono = "0.4"
|
||||
encoding = "0.2"
|
||||
failure = "0.1"
|
||||
futures = "0.1"
|
||||
log = "0.3"
|
||||
native-tls = "0.1"
|
||||
serde = "1.0"
|
||||
serde_derive = "1.0"
|
||||
serde_json = { version = "1.0", optional = true }
|
||||
serde_yaml = { version = "0.7", optional = true }
|
||||
tokio-core = "0.1"
|
||||
tokio-io = "0.1"
|
||||
tokio-mockstream = "1.1"
|
||||
tokio-timer = "0.1"
|
||||
tokio-tls = "0.1"
|
||||
toml = { version = "0.4", optional = true }
|
Loading…
Add table
Add a link
Reference in a new issue