bump floem to fix panic

This commit is contained in:
Dongdong Zhou 2024-08-22 20:31:09 +01:00
parent 30ebe951d5
commit 15958294e2
2 changed files with 8 additions and 8 deletions

12
Cargo.lock generated
View File

@ -1684,7 +1684,7 @@ checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
[[package]]
name = "floem"
version = "0.1.1"
source = "git+https://github.com/lapce/floem?rev=ba6ca44c01044ddf45c9a7985d5dfe4e7942fe64#ba6ca44c01044ddf45c9a7985d5dfe4e7942fe64"
source = "git+https://github.com/lapce/floem?rev=157631a49d6ba13a3467dcb994eb46a98c52eb76#157631a49d6ba13a3467dcb994eb46a98c52eb76"
dependencies = [
"bitflags 2.6.0",
"copypasta",
@ -1721,7 +1721,7 @@ dependencies = [
[[package]]
name = "floem-editor-core"
version = "0.1.1"
source = "git+https://github.com/lapce/floem?rev=ba6ca44c01044ddf45c9a7985d5dfe4e7942fe64#ba6ca44c01044ddf45c9a7985d5dfe4e7942fe64"
source = "git+https://github.com/lapce/floem?rev=157631a49d6ba13a3467dcb994eb46a98c52eb76#157631a49d6ba13a3467dcb994eb46a98c52eb76"
dependencies = [
"bitflags 2.6.0",
"itertools 0.12.1",
@ -1798,7 +1798,7 @@ dependencies = [
[[package]]
name = "floem_reactive"
version = "0.1.1"
source = "git+https://github.com/lapce/floem?rev=ba6ca44c01044ddf45c9a7985d5dfe4e7942fe64#ba6ca44c01044ddf45c9a7985d5dfe4e7942fe64"
source = "git+https://github.com/lapce/floem?rev=157631a49d6ba13a3467dcb994eb46a98c52eb76#157631a49d6ba13a3467dcb994eb46a98c52eb76"
dependencies = [
"smallvec",
]
@ -1806,7 +1806,7 @@ dependencies = [
[[package]]
name = "floem_renderer"
version = "0.1.1"
source = "git+https://github.com/lapce/floem?rev=ba6ca44c01044ddf45c9a7985d5dfe4e7942fe64#ba6ca44c01044ddf45c9a7985d5dfe4e7942fe64"
source = "git+https://github.com/lapce/floem?rev=157631a49d6ba13a3467dcb994eb46a98c52eb76#157631a49d6ba13a3467dcb994eb46a98c52eb76"
dependencies = [
"cosmic-text",
"image",
@ -1819,7 +1819,7 @@ dependencies = [
[[package]]
name = "floem_tiny_skia_renderer"
version = "0.1.1"
source = "git+https://github.com/lapce/floem?rev=ba6ca44c01044ddf45c9a7985d5dfe4e7942fe64#ba6ca44c01044ddf45c9a7985d5dfe4e7942fe64"
source = "git+https://github.com/lapce/floem?rev=157631a49d6ba13a3467dcb994eb46a98c52eb76#157631a49d6ba13a3467dcb994eb46a98c52eb76"
dependencies = [
"anyhow",
"bytemuck",
@ -1836,7 +1836,7 @@ dependencies = [
[[package]]
name = "floem_vger_renderer"
version = "0.1.1"
source = "git+https://github.com/lapce/floem?rev=ba6ca44c01044ddf45c9a7985d5dfe4e7942fe64#ba6ca44c01044ddf45c9a7985d5dfe4e7942fe64"
source = "git+https://github.com/lapce/floem?rev=157631a49d6ba13a3467dcb994eb46a98c52eb76#157631a49d6ba13a3467dcb994eb46a98c52eb76"
dependencies = [
"anyhow",
"floem-vger",

View File

@ -76,9 +76,9 @@ lapce-core = { path = "./lapce-core" }
lapce-rpc = { path = "./lapce-rpc" }
lapce-proxy = { path = "./lapce-proxy" }
floem = { git = "https://github.com/lapce/floem", rev = "ba6ca44c01044ddf45c9a7985d5dfe4e7942fe64", features = ["editor", "serde", "default-image-formats", "rfd-async-std"] }
floem = { git = "https://github.com/lapce/floem", rev = "157631a49d6ba13a3467dcb994eb46a98c52eb76", features = ["editor", "serde", "default-image-formats", "rfd-async-std"] }
# floem = { path = "../floem", features = ["editor", "serde", "default-image-formats", "rfd-async-std"] }
floem-editor-core = { git = "https://github.com/lapce/floem", rev = "ba6ca44c01044ddf45c9a7985d5dfe4e7942fe64", features = ["serde"] }
floem-editor-core = { git = "https://github.com/lapce/floem", rev = "157631a49d6ba13a3467dcb994eb46a98c52eb76", features = ["serde"] }
# floem-editor-core = { path = "../floem/editor-core/", features = ["serde"] }
[patch.crates-io]