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