Merge branch 'imlonghao:master' into master

This commit is contained in:
Kuoi 2022-08-02 16:41:30 +01:00 committed by GitHub
commit 5080a0d8f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

12
Cargo.lock generated
View file

@ -243,9 +243,9 @@ dependencies = [
[[package]]
name = "anyhow"
version = "1.0.58"
version = "1.0.59"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb07d2053ccdbe10e2af2995a2f116c1330396493dc1269f6a91d0ae82e19704"
checksum = "c91f1f46651137be86f3a2b9a8359f9ab421d04d941c62b5982e1ca21113adf9"
[[package]]
name = "archlinuxcn-packages"
@ -1814,18 +1814,18 @@ dependencies = [
[[package]]
name = "serde"
version = "1.0.140"
version = "1.0.141"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc855a42c7967b7c369eb5860f7164ef1f6f81c20c7cc1141f2a604e18723b03"
checksum = "7af873f2c95b99fcb0bd0fe622a43e29514658873c8ceba88c4cb88833a22500"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
version = "1.0.140"
version = "1.0.141"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f2122636b9fe3b81f1cb25099fcf2d3f542cdb1d45940d56c713158884a05da"
checksum = "75743a150d003dd863b51dc809bcad0d73f2102c53632f1e954e738192a3413f"
dependencies = [
"proc-macro2",
"quote",

View file

@ -8,7 +8,7 @@ edition = "2021"
[dependencies]
actix-web = "4.1.0"
ansi-to-html = "0.1.0"
anyhow = "1.0.58"
anyhow = "1.0.59"
bigdecimal = "0.3.0"
cached = "0.37.0"
chrono = "0.4.19"
@ -19,6 +19,6 @@ pg_bigdecimal = "0.1.4"
postgres-types = { version = "0.2.3", features = ["derive"]}
sentry = "0.27.0"
sentry-actix = "0.27.0"
serde = { version = "1.0.140", features = ["derive"] }
serde = { version = "1.0.141", features = ["derive"] }
tokio-postgres = { version = "0.7.6", features = ["with-chrono-0_4"]}
yaml-rust = "0.4.5"