Jelajahi Sumber

Remove smallbox

Jonathan Kelley 1 tahun lalu
induk
melakukan
66ba220265
2 mengubah file dengan 0 tambahan dan 17 penghapusan
  1. 0 7
      Cargo.lock
  2. 0 10
      packages/core/Cargo.toml

+ 0 - 7
Cargo.lock

@@ -2493,7 +2493,6 @@ dependencies = [
  "rustc-hash",
  "serde",
  "slab",
- "smallbox",
  "tokio",
  "tracing",
 ]
@@ -9374,12 +9373,6 @@ dependencies = [
  "rustc-hash",
 ]
 
-[[package]]
-name = "smallbox"
-version = "0.8.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d92359f97e6b417da4328a970cf04a044db104fbd57f7d72cb7ff665bb8806af"
-
 [[package]]
 name = "smallvec"
 version = "1.11.2"

+ 0 - 10
packages/core/Cargo.toml

@@ -10,24 +10,14 @@ homepage = "https://dioxuslabs.com"
 keywords = ["dom", "ui", "gui", "react"]
 
 [dependencies]
-# faster hashmaps
 rustc-hash = { workspace = true }
-
-# Used in diffing
 longest-increasing-subsequence = "0.1.0"
-
 futures-util = { workspace = true, default-features = false, features = [
     "alloc",
 ] }
-
 slab = { workspace = true }
-
 futures-channel = { workspace = true }
-
-smallbox = "0.8.1"
 tracing = { workspace = true }
-
-# Serialize the Edits for use in Webview/Liveview instances
 serde = { version = "1", features = ["derive"], optional = true }
 
 [dev-dependencies]