ci: fix audit
This commit is contained in:
parent
648ec41cf3
commit
920e7f9564
|
|
@ -50,7 +50,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
cargo sqlx prepare --check -- --bin appflowy_server
|
cargo sqlx prepare --check -- --bin appflowy_server
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: cargo tes
|
run: cargo test
|
||||||
|
|
||||||
fmt:
|
fmt:
|
||||||
name: Rustfmt
|
name: Rustfmt
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@ futures-util = "0.3.26"
|
||||||
async-stream = "0.3.4"
|
async-stream = "0.3.4"
|
||||||
config = { version = "0.13.3", default-features = false, features = ["yaml"] }
|
config = { version = "0.13.3", default-features = false, features = ["yaml"] }
|
||||||
once_cell = "1.13.0"
|
once_cell = "1.13.0"
|
||||||
chrono = { version = "0.4.23", features = ["serde", "clock"] }
|
chrono = { version = "0.4.23", features = ["serde", "clock"], default-features = false }
|
||||||
derive_more = { version = "0.99" }
|
derive_more = { version = "0.99" }
|
||||||
uuid = { version = "1", features = ["v4", "serde"] }
|
uuid = { version = "1", features = ["v4", "serde"] }
|
||||||
argon2 = { version = "0.5", features = ["std"] }
|
argon2 = { version = "0.5", features = ["std"] }
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
chrono = { version = "0.4.22", features = ["serde", "clock"] }
|
chrono = { version = "0.4.23", features = ["serde", "clock"], default-features = false }
|
||||||
jwt = "0.16.0"
|
jwt = "0.16.0"
|
||||||
thiserror = "1.0.30"
|
thiserror = "1.0.30"
|
||||||
hmac = "0.12.1"
|
hmac = "0.12.1"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue