Skip to content

Commit

Permalink
Update version (#30)
Browse files Browse the repository at this point in the history
Signed-off-by: GitHub <[email protected]>
Co-authored-by: spencerjibz <[email protected]>
  • Loading branch information
github-actions[bot] and spencerjibz authored Jul 11, 2024
1 parent 432946d commit 779a6d6
Showing 1 changed file with 22 additions and 20 deletions.
42 changes: 22 additions & 20 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "async-event-emitter"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
description = "Lightweight AsyncEventEmitter"
authors = ["Spencer Najib", "Dylan Kerler"]
keywords = ["event-emitter", "tokio", "async-rust", "futures", "bincode"]
authors = [ "Spencer Najib", "Dylan Kerler" ]
keywords = [ "event-emitter", "tokio", "async-rust", "futures", "bincode" ]
license = "MIT"
repository = "https://github.com/spencerjibz/async-event-emitter-rs"
homepage = "https://github.com/spencerjibz/async-event-emitter-rs"
categories = ["asynchronous","web-programming"]
categories = [ "asynchronous", "web-programming" ]
readme = "./README.md"

[dependencies]
Expand All @@ -18,22 +18,24 @@ futures = "0.3.29"
lazy_static = "1.4.0"
tokio-test = "0.4.3"

[dependencies.async-std]
version = "1.12.0"
optional = true
features = ["alloc","attributes"]
[dependencies.serde]
version = "1.0.190"
features = ["derive"]
[dependencies.tokio]
version = "1.33.0"
features = ["rt", "macros", "rt-multi-thread"]
optional = true
[dependencies.async-std]
version = "1.12.0"
optional = true
features = [ "alloc", "attributes" ]

[dependencies.uuid]
version = "1.5.0"
features = ["v4"]
[dependencies.serde]
version = "1.0.190"
features = [ "derive" ]

[dependencies.tokio]
version = "1.33.0"
features = [ "rt", "macros", "rt-multi-thread" ]
optional = true

[dependencies.uuid]
version = "1.5.0"
features = [ "v4" ]

[features]
use-async-std = ["async-std"]
default = ["tokio"]
use-async-std = [ "async-std" ]
default = [ "tokio" ]

0 comments on commit 779a6d6

Please sign in to comment.