11[package ]
22name = " irc"
3- version = " 1.0 .0"
4- authors = [
" Aaron Weiss <[email protected] >" ]
3+ version = " 1.1 .0"
4+ authors = [
" Ariel Weiss <[email protected] >" ]
55edition = " 2018"
66rust-version = " 1.71"
77description = " the irc crate – usable, async IRC for Rust"
@@ -20,7 +20,7 @@ is-it-maintained-open-issues = { repository = "aatxe/irc" }
2020
2121
2222[workspace ]
23- members = [ " ./" , " irc-proto/" ]
23+ members = [" ./" , " irc-proto/" ]
2424
2525
2626[features ]
@@ -38,13 +38,24 @@ yaml = ["yaml_config"]
3838proxy = [" tokio-socks" ]
3939
4040tls-native = [" native-tls" , " tokio-native-tls" ]
41- tls-rust = [" rustls-native-certs" , " rustls-pemfile" , " tokio-rustls" , " webpki-roots" ]
41+ tls-rust = [
42+ " rustls-native-certs" ,
43+ " rustls-pemfile" ,
44+ " tokio-rustls" ,
45+ " webpki-roots" ,
46+ ]
4247encoding = [" dep:encoding" , " irc-proto/encoding" ]
4348
4449[dependencies ]
45- chrono = { version = " 0.4.24" , default-features = false , features = [" clock" , " std" ] }
50+ chrono = { version = " 0.4.24" , default-features = false , features = [
51+ " clock" ,
52+ " std" ,
53+ ] }
4654encoding = { version = " 0.2.33" , optional = true }
47- futures-util = { version = " 0.3.30" , default-features = false , features = [" alloc" , " sink" ] }
55+ futures-util = { version = " 0.3.30" , default-features = false , features = [
56+ " alloc" ,
57+ " sink" ,
58+ ] }
4859irc-proto = { version = " 1.0.0" , path = " irc-proto" }
4960log = " 0.4.21"
5061parking_lot = " 0.12.1"
@@ -78,7 +89,13 @@ args = "2.2.0"
7889env_logger = " 0.11.0"
7990futures = " 0.3.30"
8091getopts = " 0.2.21"
81- tokio = { version = " 1.27.0" , features = [" rt" , " rt-multi-thread" , " macros" , " net" , " time" ] }
92+ tokio = { version = " 1.27.0" , features = [
93+ " rt" ,
94+ " rt-multi-thread" ,
95+ " macros" ,
96+ " net" ,
97+ " time" ,
98+ ] }
8299
83100
84101[[example ]]
0 commit comments