-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
14 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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 = [] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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"] | ||
|