matrix-rust-sdk/crates/matrix-sdk-appservice/Cargo.toml

54 lines
1.6 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]
2021-08-17 18:17:17 +00:00
default = ["warp", "native-tls"]
encryption = ["matrix-sdk/encryption"]
sled_state_store = ["matrix-sdk/sled_state_store"]
sled_cryptostore = ["matrix-sdk/sled_cryptostore"]
markdown = ["matrix-sdk/markdown"]
native-tls = ["matrix-sdk/native-tls"]
rustls-tls = ["matrix-sdk/rustls-tls"]
socks = ["matrix-sdk/socks"]
sso_login = ["matrix-sdk/sso_login"]
require_auth_for_profile_requests = ["matrix-sdk/require_auth_for_profile_requests"]
2021-04-29 11:28:08 +00:00
2021-06-29 10:09:55 +00:00
docs = ["warp"]
2021-04-29 11:28:08 +00:00
[dependencies]
dashmap = "4"
2021-04-29 11:28:08 +00:00
futures = "0.3"
futures-util = "0.3"
http = "0.2"
matrix-sdk = { version = "0.4", path = "../matrix-sdk", default-features = false, features = ["appservice"] }
2021-04-29 11:28:08 +00:00
regex = "1"
2021-06-03 16:20:07 +00:00
serde = "1"
serde_json = "1"
2021-04-29 11:28:08 +00:00
serde_yaml = "0.8"
thiserror = "1.0"
tracing = "0.1"
url = "2"
2021-06-09 20:14:41 +00:00
warp = { git = "https://github.com/seanmonstar/warp.git", rev = "629405", optional = true, default-features = false }
2021-04-29 11:28:08 +00:00
2021-06-07 14:58:29 +00:00
[dependencies.ruma]
2021-09-10 08:08:48 +00:00
version = "0.4.0"
2021-06-07 14:58:29 +00:00
features = ["client-api-c", "appservice-api-s", "unstable-pre-spec"]
2021-04-29 11:28:08 +00:00
[dev-dependencies]
env_logger = "0.8"
matrix-sdk-test = { version = "0.4", path = "../matrix-sdk-test", features = ["appservice"] }
2021-04-29 11:28:08 +00:00
mockito = "0.30"
tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "macros"] }
tracing-subscriber = "0.2"
[[example]]
name = "appservice_autojoin"
required-features = ["warp"]