matrix-rust-sdk/matrix_sdk_appservice/Cargo.toml

48 lines
1.2 KiB
TOML
Raw Normal View History

2021-04-29 11:28:08 +00:00
[package]
authors = ["Johannes Becker <j.becker@famedly.com>"]
edition = "2018"
homepage = "https://github.com/matrix-org/matrix-rust-sdk"
keywords = ["matrix", "chat", "messaging", "ruma", "nio", "appservice"]
license = "Apache-2.0"
name = "matrix-sdk-appservice"
version = "0.1.0"
[features]
default = ["actix"]
actix = ["actix-rt", "actix-web"]
docs = []
[dependencies]
actix-rt = { version = "2", optional = true }
actix-web = { version = "4.0.0-beta.6", optional = true }
dashmap = "4"
2021-04-29 11:28:08 +00:00
futures = "0.3"
futures-util = "0.3"
http = "0.2"
regex = "1"
2021-06-07 14:58:29 +00:00
serde = "1.0.126"
2021-04-29 11:28:08 +00:00
serde_yaml = "0.8"
thiserror = "1.0"
tracing = "0.1"
url = "2"
matrix-sdk = { version = "0.2", path = "../matrix_sdk", default-features = false, features = ["appservice", "native-tls"] }
2021-06-07 14:58:29 +00:00
[dependencies.ruma]
version = "0.1.2"
features = ["client-api-c", "appservice-api-s", "unstable-pre-spec"]
2021-04-29 11:28:08 +00:00
[dev-dependencies]
env_logger = "0.8"
mockito = "0.30"
serde_json = "1"
tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "macros"] }
tracing-subscriber = "0.2"
matrix-sdk-test = { version = "0.2", path = "../matrix_sdk_test" }
[[example]]
name = "actix_autojoin"
required-features = ["actix"]