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:
|
include:
|
||||||
- name: linux / appservice / stable / actix
|
- name: linux / appservice / stable / actix
|
||||||
cargo_args: --features actix
|
cargo_args: --no-default-features --features actix
|
||||||
|
|
||||||
- name: macOS / appservice / stable / actix
|
- name: macOS / appservice / stable / actix
|
||||||
os: macOS-latest
|
os: macOS-latest
|
||||||
cargo_args: --features actix
|
cargo_args: --no-default-features --features actix
|
||||||
|
|
||||||
- name: linux / appservice / stable / warp
|
- name: linux / appservice / stable / warp
|
||||||
cargo_args: --features warp
|
cargo_args: --features warp
|
||||||
|
|
|
@ -8,7 +8,7 @@ name = "matrix-sdk-appservice"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = ["warp"]
|
||||||
actix = ["actix-rt", "actix-web"]
|
actix = ["actix-rt", "actix-web"]
|
||||||
|
|
||||||
docs = ["actix", "warp"]
|
docs = ["actix", "warp"]
|
||||||
|
@ -27,7 +27,7 @@ serde_yaml = "0.8"
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
url = "2"
|
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"] }
|
matrix-sdk = { version = "0.2", path = "../matrix_sdk", default-features = false, features = ["appservice", "native-tls"] }
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue