mirror of
https://github.com/redstrate/Kawari.git
synced 2025-07-13 17:07:45 +00:00
Update dependencies
This commit is contained in:
parent
5dcd3ea1f2
commit
5f57748a6f
2 changed files with 15 additions and 15 deletions
18
Cargo.lock
generated
18
Cargo.lock
generated
|
@ -2682,9 +2682,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "libsqlite3-sys"
|
name = "libsqlite3-sys"
|
||||||
version = "0.34.0"
|
version = "0.35.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "91632f3b4fb6bd1d72aa3d78f41ffecfcf2b1a6648d8c241dbe7dbfaf4875e15"
|
checksum = "133c182a6a2c87864fe97778797e46c7e999672690dc9fa3ee8e241aa4a9c13f"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cc",
|
"cc",
|
||||||
"pkg-config",
|
"pkg-config",
|
||||||
|
@ -2785,9 +2785,9 @@ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "md5"
|
name = "md5"
|
||||||
version = "0.7.0"
|
version = "0.8.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
|
checksum = "ae960838283323069879657ca3de837e9f7bbb4c7bf6ea7f1b290d5e9476d2e0"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "memchr"
|
name = "memchr"
|
||||||
|
@ -3390,7 +3390,7 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "physis"
|
name = "physis"
|
||||||
version = "0.5.0"
|
version = "0.5.0"
|
||||||
source = "git+https://github.com/redstrate/physis#fe8afff1c30d0fa3c8d62daf80941e177ab601be"
|
source = "git+https://github.com/redstrate/physis#0c6383c3cc02d6526edd13f68573ca42720cf969"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"binrw",
|
"binrw",
|
||||||
"bitflags 2.9.1",
|
"bitflags 2.9.1",
|
||||||
|
@ -3760,9 +3760,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rusqlite"
|
name = "rusqlite"
|
||||||
version = "0.36.0"
|
version = "0.37.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "3de23c3319433716cf134eed225fe9986bc24f63bed9be9f20c329029e672dc7"
|
checksum = "165ca6e57b20e1351573e3729b958bc62f0e48025386970b6e4d29e7a7e71f3f"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags 2.9.1",
|
"bitflags 2.9.1",
|
||||||
"fallible-iterator",
|
"fallible-iterator",
|
||||||
|
@ -5196,9 +5196,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "winnow"
|
name = "winnow"
|
||||||
version = "0.7.11"
|
version = "0.7.12"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "74c7b26e3480b707944fc872477815d29a8e429d2f93a1ce000f5fa84a15cbcd"
|
checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"memchr",
|
"memchr",
|
||||||
]
|
]
|
||||||
|
|
12
Cargo.toml
12
Cargo.toml
|
@ -73,7 +73,7 @@ tracing = { version = "0.1", default-features = false }
|
||||||
binrw = { version = "0.15", features = ["std"], default-features = false }
|
binrw = { version = "0.15", features = ["std"], default-features = false }
|
||||||
|
|
||||||
# Used in encryption of packets
|
# Used in encryption of packets
|
||||||
md5 = { version = "0.7", default-features = false }
|
md5 = { version = "0.8", default-features = false }
|
||||||
|
|
||||||
# Used to access game data
|
# Used to access game data
|
||||||
physis = { git = "https://github.com/redstrate/physis", default-features = false }
|
physis = { git = "https://github.com/redstrate/physis", default-features = false }
|
||||||
|
@ -109,7 +109,7 @@ axum = { version = "0.8", features = ["json", "tokio", "http1", "form", "query",
|
||||||
axum-extra = { version = "0.10", features = ["cookie"], default-features = false }
|
axum-extra = { version = "0.10", features = ["cookie"], default-features = false }
|
||||||
|
|
||||||
# Async runtime
|
# Async runtime
|
||||||
tokio = { version = "1.45", features = ["macros", "rt", "rt-multi-thread", "io-util"], default-features = false }
|
tokio = { version = "1.46", features = ["macros", "rt", "rt-multi-thread", "io-util"], default-features = false }
|
||||||
|
|
||||||
# Logging
|
# Logging
|
||||||
tracing-subscriber = { version = "0.3", features = ["fmt"], default-features = false }
|
tracing-subscriber = { version = "0.3", features = ["fmt"], default-features = false }
|
||||||
|
@ -118,16 +118,16 @@ tracing-subscriber = { version = "0.3", features = ["fmt"], default-features = f
|
||||||
fastrand = { version = "2.3", features = ["std"], default-features = false }
|
fastrand = { version = "2.3", features = ["std"], default-features = false }
|
||||||
|
|
||||||
# HTML templates used in the web servers
|
# HTML templates used in the web servers
|
||||||
minijinja = { version = "2.10", features = ["serde", "loader", "multi_template"], default-features = false }
|
minijinja = { version = "2.11", features = ["serde", "loader", "multi_template"], default-features = false }
|
||||||
|
|
||||||
# Used for data persistence
|
# Used for data persistence
|
||||||
rusqlite = { version = "0.36", features = ["bundled"], default-features = false }
|
rusqlite = { version = "0.37", features = ["bundled"], default-features = false }
|
||||||
|
|
||||||
# For server-side scripting
|
# For server-side scripting
|
||||||
mlua = { version = "0.10", features = ["lua54", "vendored", "send", "async", "serialize"], default-features = false }
|
mlua = { version = "0.10", features = ["lua54", "vendored", "send", "async", "serialize"], default-features = false }
|
||||||
|
|
||||||
# For character backup decompression
|
# For character backup decompression
|
||||||
zip = { version = "4.1", features = ["deflate", "lzma", "bzip2"], default-features = false }
|
zip = { version = "4.3", features = ["deflate", "lzma", "bzip2"], default-features = false }
|
||||||
|
|
||||||
# For some login<->lobby server communication
|
# For some login<->lobby server communication
|
||||||
reqwest = { version = "0.12", default-features = false }
|
reqwest = { version = "0.12", default-features = false }
|
||||||
|
@ -139,4 +139,4 @@ rkon = { version = "0.1" }
|
||||||
tower-http = { version = "0.6", features = ["fs", "cors"] }
|
tower-http = { version = "0.6", features = ["fs", "cors"] }
|
||||||
|
|
||||||
# For obtaining SHA1 hashes of game components
|
# For obtaining SHA1 hashes of game components
|
||||||
sha1_smol = { version = "1.0.1" }
|
sha1_smol = { version = "1.0" }
|
||||||
|
|
Loading…
Add table
Reference in a new issue