Skip to content

Commit

Permalink
fix: build failed caused by chrono compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
stickmy committed Jul 26, 2024
1 parent 37642b7 commit e4351df
Show file tree
Hide file tree
Showing 2 changed files with 103 additions and 24 deletions.
96 changes: 77 additions & 19 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 26 additions & 5 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,26 +13,47 @@ edition = "2021"
tauri-build = { version = "1.2", features = [] }

[dependencies]
tauri = { version = "1.2", features = ["clipboard-write-text", "fs-create-dir", "fs-exists", "fs-read-dir", "fs-read-file", "fs-write-file", "shell-open"] }
tauri = { version = "1.2", features = [
"clipboard-write-text",
"fs-create-dir",
"fs-exists",
"fs-read-dir",
"fs-read-file",
"fs-write-file",
"shell-open",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "1.3.1", features = ["serde"] }
futures = "0.3.11"
async-process = "1.7.0"
async-trait = "0.1.68"
async-compression = { version = "0.3.7", features = ["tokio", "brotli", "gzip", "zlib", "zstd"] }
async-compression = { version = "0.3.7", features = [
"tokio",
"brotli",
"gzip",
"zlib",
"zstd",
] }
moka = { version = "0.9.6", features = ["future"] }
chrono = "0.4.24"
chrono = "0.4.28"
bstr = "1.4.0"
bytes = { version = "1.4.0", features = ["serde"] }
http = "0.2.8"
http-serde = "1.1"
hyper = { version = "0.14.23", features = ["full"] }
hyper-rustls = {version = "0.23.2", features = ["http1", "logging", "tls12", "webpki-tokio"] }
hyper-rustls = { version = "0.23.2", features = [
"http1",
"logging",
"tls12",
"webpki-tokio",
] }
tokio = { version = "1.25.0", features = ["full"] }
hyper-tungstenite = "0.9.0"
tokio-rustls = "0.23.4"
tokio-tungstenite = { version = "0.18.0", features = ["rustls-tls-webpki-roots"] }
tokio-tungstenite = { version = "0.18.0", features = [
"rustls-tls-webpki-roots",
] }
tokio-util = { version = "0.7.0", features = ["io"] }
openssl = { version = "0.10.45", features = ["vendored"] }
snafu = "0.7"
Expand Down

0 comments on commit e4351df

Please sign in to comment.