21 lines
919 B
TOML
21 lines
919 B
TOML
[package]
|
|
name = "joke_bot"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
ruma = { version = "0.5.0", path = "../../crates/ruma", features = ["client", "client-api-c", "client-ext-client-api", "client-hyper-native-tls", "events", "rand"] }
|
|
# For building locally: use the git dependencies below.
|
|
# Browse the source at this revision here: https://github.com/ruma/ruma/tree/f161c8117c706fc52089999e1f406cf34276ec9d
|
|
# ruma = { git = "https://github.com/ruma/ruma", rev = "f161c8117c706fc52089999e1f406cf34276ec9d", features = ["client-api-c", "client", "client-hyper-native-tls", "events"] }
|
|
|
|
futures-util = { version = "0.3.21", default-features = false, features = ["std"] }
|
|
http = "0.2.2"
|
|
hyper = "0.14.2"
|
|
hyper-tls = "0.5.0"
|
|
serde_json = "1.0"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-stream = "0.1.7"
|