Skip to content

Commit 779a6d6

Browse files
Update version (#30)
Signed-off-by: GitHub <noreply@github.com> Co-authored-by: spencerjibz <spencerjibz@users.noreply.github.com>
1 parent 432946d commit 779a6d6

File tree

1 file changed

+22
-20
lines changed

1 file changed

+22
-20
lines changed

Cargo.toml

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "async-event-emitter"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55
description = "Lightweight AsyncEventEmitter"
6-
authors = ["Spencer Najib", "Dylan Kerler"]
7-
keywords = ["event-emitter", "tokio", "async-rust", "futures", "bincode"]
6+
authors = [ "Spencer Najib", "Dylan Kerler" ]
7+
keywords = [ "event-emitter", "tokio", "async-rust", "futures", "bincode" ]
88
license = "MIT"
99
repository = "https://github.com/spencerjibz/async-event-emitter-rs"
1010
homepage = "https://github.com/spencerjibz/async-event-emitter-rs"
11-
categories = ["asynchronous","web-programming"]
11+
categories = [ "asynchronous", "web-programming" ]
1212
readme = "./README.md"
1313

1414
[dependencies]
@@ -18,22 +18,24 @@ futures = "0.3.29"
1818
lazy_static = "1.4.0"
1919
tokio-test = "0.4.3"
2020

21-
[dependencies.async-std]
22-
version = "1.12.0"
23-
optional = true
24-
features = ["alloc","attributes"]
25-
[dependencies.serde]
26-
version = "1.0.190"
27-
features = ["derive"]
28-
[dependencies.tokio]
29-
version = "1.33.0"
30-
features = ["rt", "macros", "rt-multi-thread"]
31-
optional = true
21+
[dependencies.async-std]
22+
version = "1.12.0"
23+
optional = true
24+
features = [ "alloc", "attributes" ]
3225

33-
[dependencies.uuid]
34-
version = "1.5.0"
35-
features = ["v4"]
26+
[dependencies.serde]
27+
version = "1.0.190"
28+
features = [ "derive" ]
29+
30+
[dependencies.tokio]
31+
version = "1.33.0"
32+
features = [ "rt", "macros", "rt-multi-thread" ]
33+
optional = true
34+
35+
[dependencies.uuid]
36+
version = "1.5.0"
37+
features = [ "v4" ]
3638

3739
[features]
38-
use-async-std = ["async-std"]
39-
default = ["tokio"]
40+
use-async-std = [ "async-std" ]
41+
default = [ "tokio" ]

0 commit comments

Comments
 (0)