ci: fix audit

This commit is contained in:
nathan 2023-03-16 21:33:11 +08:00
parent 648ec41cf3
commit 920e7f9564
3 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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"] }
@ -80,4 +80,4 @@ members = [
"crates/token",
"crates/revdb",
"crates/snowflake",
]
]

View File

@ -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"