Merge branch 'main' into v5-api

v5-api
Dominik Nakamura 3 years ago
commit 75bdbedc20
No known key found for this signature in database
GPG Key ID: E4C6A749B2491910

@ -1,9 +1,8 @@
name: CI
on:
pull_request:
push:
branches:
- main
on: [pull_request, push]
env:
CARGO_INCREMENTAL: 0
RUSTFLAGS: "-C debuginfo=0 -D warnings"
jobs:
check:
name: Feature check
@ -16,6 +15,8 @@ jobs:
with:
toolchain: stable
override: true
- name: Configure cache
uses: Swatinem/rust-cache@v1
- name: Install cargo-hack
uses: actions-rs/cargo@v1
with:
@ -41,6 +42,8 @@ jobs:
profile: minimal
toolchain: stable
override: true
- name: Configure cache
uses: Swatinem/rust-cache@v1
- name: Test
uses: actions-rs/cargo@v1
with:
@ -67,6 +70,8 @@ jobs:
with:
toolchain: stable
override: true
- name: Configure cache
uses: Swatinem/rust-cache@v1
- name: Run clippy
uses: actions-rs/cargo@v1
with:

@ -19,26 +19,26 @@ features = ["events", "tls"]
[dependencies]
async-stream = { version = "0.3.2", optional = true }
base64 = "0.13.0"
bitflags = "1.2.1"
bitflags = "1.3.2"
chrono = { version = "0.4.19", features = ["serde"] }
futures-util = { version = "0.3.15", features = ["sink"] }
futures-util = { version = "0.3.17", features = ["sink"] }
log = "0.4.14"
semver = { version = "1.0.3", features = ["serde"] }
serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0.64"
semver = { version = "1.0.4", features = ["serde"] }
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.67"
serde_repr = "0.1.7"
serde_with = "1.9.4"
sha2 = "0.9.5"
thiserror = "1.0.26"
tokio = { version = "1.8.2", features = ["net", "rt", "sync"] }
serde_with = "1.10.0"
sha2 = "0.9.6"
thiserror = "1.0.29"
tokio = { version = "1.11.0", features = ["net", "rt", "sync"] }
tokio-tungstenite = "0.14.0"
[dev-dependencies]
anyhow = "1.0.42"
anyhow = "1.0.43"
dotenv = "0.15.0"
pretty_env_logger = "0.4.0"
serde_test = "1.0.126"
tokio = { version = "1.8.2", features = ["fs", "macros", "rt-multi-thread", "time"] }
serde_test = "1.0.130"
tokio = { version = "1.11.0", features = ["fs", "macros", "rt-multi-thread", "time"] }
[features]
default = []

Loading…
Cancel
Save