appservice: Enable warp by default
This commit is contained in:
parent
4a83e36195
commit
df42ef68a2
2 changed files with 4 additions and 4 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -101,11 +101,11 @@ jobs:
|
|||
|
||||
include:
|
||||
- name: linux / appservice / stable / actix
|
||||
cargo_args: --features actix
|
||||
cargo_args: --no-default-features --features actix
|
||||
|
||||
- name: macOS / appservice / stable / actix
|
||||
os: macOS-latest
|
||||
cargo_args: --features actix
|
||||
cargo_args: --no-default-features --features actix
|
||||
|
||||
- name: linux / appservice / stable / warp
|
||||
cargo_args: --features warp
|
||||
|
|
|
@ -8,7 +8,7 @@ name = "matrix-sdk-appservice"
|
|||
version = "0.1.0"
|
||||
|
||||
[features]
|
||||
default = []
|
||||
default = ["warp"]
|
||||
actix = ["actix-rt", "actix-web"]
|
||||
|
||||
docs = ["actix", "warp"]
|
||||
|
@ -27,7 +27,7 @@ serde_yaml = "0.8"
|
|||
thiserror = "1.0"
|
||||
tracing = "0.1"
|
||||
url = "2"
|
||||
warp = { git = "https://github.com/seanmonstar/warp.git", rev = "629405", optional = true, default-features = false, features = ["multipart", "websocket"] }
|
||||
warp = { git = "https://github.com/seanmonstar/warp.git", rev = "629405", optional = true, default-features = false }
|
||||
|
||||
matrix-sdk = { version = "0.2", path = "../matrix_sdk", default-features = false, features = ["appservice", "native-tls"] }
|
||||
|
||||
|
|
Loading…
Reference in a new issue