[package] name = "disruption" version = "0.1.0" edition = "2021" authors = ["Louis Meyer (H1ghBre4k3r) "] repository = "https://github.com/H1ghBre4k3r/disruption" description = "A light wrapper around the Discord API and gateway." license = "MIT" readme = "README.md" [lib] name = "disruption" [workspace] members = ["crates/*"] [dependencies] disruption_types = { version = "0.1.0", path = "./crates/disruption_types" } disruption_gateway = { version = "0.1.0", path = "./crates/disruption_gateway" } serde = { version = "1.0.189", features = ["derive"] } serde_json = "1.0.107" serde_repr = "0.1.16" tokio = {version = "1.33.0", features = ["full"] } tokio-tungstenite = { version = "0.20.1", features = ["native-tls"] } url = "2.4.1" futures-util = "0.3.28" futures-channel = "0.3" futures = "0.3.28" reqwest = { version = "0.11", features = ["json"] } async-channel = "1.9.0" env_logger = "0.10.0" log = "0.4.20" async-trait = "0.1.73"