Skip to content

Commit

Permalink
Version 0.0.8 released
Browse files Browse the repository at this point in the history
  • Loading branch information
MoskalykA committed Jun 7, 2023
1 parent 6522590 commit b43bd40
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion adiscord-intents/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "adiscord-intents"
version = "0.0.3"
version = "0.0.4"
authors = ["MoskalykA <[email protected]>"]
edition = "2021"
description = "Calculate the number of intents from a list of enums"
Expand Down
4 changes: 2 additions & 2 deletions adiscord-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ license = "MIT"
[dependencies]
dotenv_codegen = "0.15.0"
tokio = { version = "1", features = ["rt-multi-thread"] }
adiscord = { version = "0.0.7", features = ["gateway"] }
adiscord-intents = "0.0.3"
adiscord = { version = "0.0.8", features = ["gateway"] }
adiscord-intents = "0.0.4"
7 changes: 4 additions & 3 deletions adiscord-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "adiscord-types"
version = "0.0.3"
version = "0.0.4"
authors = ["MoskalykA <[email protected]>"]
edition = "2021"
description = "The large list of Discord API types and Gateway types"
Expand All @@ -10,8 +10,9 @@ repository = "https://github.com/MoskalykA/adiscord"
license = "MIT"

[dependencies]
serde = { version = "1.0.157", features = ["derive"] }
serde_json = { version = "1.0.95" }
serde = { version = "1.0.163", features = ["derive"] }
serde_json = { version = "1.0.96" }
serde_repr = "0.1.12"

[features]
gateway = []
Expand Down
14 changes: 7 additions & 7 deletions adiscord/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "adiscord"
version = "0.0.7"
version = "0.0.8"
authors = ["MoskalykA <[email protected]>"]
edition = "2021"
description = "An API and Gateway Discord wrapper in Rust"
Expand All @@ -10,16 +10,16 @@ repository = "https://github.com/MoskalykA/adiscord"
license = "MIT"

[dependencies]
reqwest = { version = "0.11.14", features = ["json"] }
serde = { version = "1.0.157", features = ["derive"] }
adiscord-types = "0.0.3"
reqwest = { version = "0.11.18", features = ["json"] }
serde = { version = "1.0.163", features = ["derive"] }
adiscord-types = "0.0.4"

async-trait = { version = "0.1.68", optional = true }
ezsockets = { version = "0.5.1", features = ["tls", "native-tls"], optional = true }
url = { version = "2.3.1", optional = true }
serde_json = { version = "1.0.95", optional = true }
tokio = { version = "1.27.0", features = ["time", "process"], optional = true }
adiscord-intents = { version = "0.0.3", optional = true }
serde_json = { version = "1.0.96", optional = true }
tokio = { version = "1.28.2", features = ["time", "process"], optional = true }
adiscord-intents = { version = "0.0.4", optional = true }

[features]
gateway = ["async-trait", "ezsockets", "url", "serde_json", "tokio", "adiscord-intents", "adiscord-types/gateway"]
Expand Down

0 comments on commit b43bd40

Please sign in to comment.