fix gui memory leak (#768)

* upgrade primevue
* use card instead of panel
This commit is contained in:
Sijie.Sun
2025-04-10 10:02:04 +08:00
committed by GitHub
parent 01e3ad99ca
commit 75f7865769
8 changed files with 189 additions and 153 deletions

19
Cargo.lock generated
View File

@@ -1940,7 +1940,7 @@ dependencies = [
"once_cell",
"parking_lot",
"percent-encoding",
"petgraph 0.7.1",
"petgraph 0.8.1",
"pin-project-lite",
"pnet",
"prost",
@@ -2362,6 +2362,12 @@ version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "foldhash"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
[[package]]
name = "foreign-types"
version = "0.3.2"
@@ -2983,6 +2989,11 @@ name = "hashbrown"
version = "0.15.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
dependencies = [
"allocator-api2",
"equivalent",
"foldhash",
]
[[package]]
name = "hashlink"
@@ -5153,12 +5164,14 @@ dependencies = [
[[package]]
name = "petgraph"
version = "0.7.1"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
checksum = "7a98c6720655620a521dcc722d0ad66cd8afd5d86e34a89ef691c50b7b24de06"
dependencies = [
"fixedbitset 0.5.7",
"hashbrown 0.15.2",
"indexmap 2.7.1",
"serde",
]
[[package]]