Skip to content

Commit b04602d

Browse files
committed
cargo.toml edits for new release
1 parent c5fee75 commit b04602d

File tree

2 files changed

+26
-9
lines changed

2 files changed

+26
-9
lines changed

Cargo.toml

Lines changed: 24 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "irc"
3-
version = "1.0.0"
4-
authors = ["Aaron Weiss <[email protected]>"]
3+
version = "1.1.0"
4+
authors = ["Ariel Weiss <[email protected]>"]
55
edition = "2018"
66
rust-version = "1.71"
77
description = "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"]
3838
proxy = ["tokio-socks"]
3939

4040
tls-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+
]
4247
encoding = ["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+
] }
4654
encoding = { 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+
] }
4859
irc-proto = { version = "1.0.0", path = "irc-proto" }
4960
log = "0.4.21"
5061
parking_lot = "0.12.1"
@@ -78,7 +89,13 @@ args = "2.2.0"
7889
env_logger = "0.11.0"
7990
futures = "0.3.30"
8091
getopts = "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]]

irc-proto/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "irc-proto"
3-
version = "1.0.0"
4-
authors = ["Aaron Weiss <[email protected]>"]
3+
version = "1.1.0"
4+
authors = ["Ariel Weiss <[email protected]>"]
55
edition = "2018"
66
rust-version = "1.60"
77
description = "The IRC protocol distilled."

0 commit comments

Comments
 (0)