Cargo.toml (595B)
1 [package] 2 name = "ruma-bot" 3 version = "0.1.0" 4 authors = ["Jonas Platte <jplatte+git@posteo.de>"] 5 edition = "2018" 6 7 [dependencies] 8 anymap = "0.12.1" 9 failure = "0.1.6" 10 futures-preview = "=0.3.0-alpha.19" 11 hyper = { version = "=0.13.0-alpha.4", features = ["unstable-stream"] } 12 hyper-tls = { version = "=0.4.0-alpha.4", optional = true } 13 ruma-client = "0.3.0-beta.1" 14 tokio = "0.2.0-alpha.6" 15 url = "2.1.0" 16 17 [dependencies.ruma-bot-macros] 18 path = "macros" 19 20 [patch.crates-io.ruma-client-api] 21 git = "https://github.com/ruma/ruma-client-api.git" 22 branch = "request-ctors" 23 24 [workspace] 25 members = ["macros"]