dioxus/packages/core/Cargo.toml

46 lines
1.1 KiB
TOML
Raw Normal View History

2021-01-14 02:56:41 -05:00
[package]
name = "dioxus-core"
2021-02-28 17:38:05 -05:00
version = "0.1.2"
2021-01-14 02:56:41 -05:00
authors = ["Jonathan Kelley <jkelleyrtp@gmail.com>"]
edition = "2018"
2021-01-19 08:47:08 -05:00
description = "Core functionality for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
"license" = "MIT/Apache-2.0"
2021-01-14 02:56:41 -05:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# todo: use wast for faster load/compile
2021-07-11 18:39:45 -04:00
dioxus-core-macro = { path = "../core-macro", version = "0.1.1" }
2021-03-11 12:27:01 -05:00
2021-06-23 01:44:48 -04:00
# Bumpalo is used as a micro heap backing each component
2021-07-11 18:39:45 -04:00
bumpalo = { version = "3.6.0", features = ["collections", "boxed"] }
# custom error type
2021-05-16 02:06:02 -04:00
thiserror = "1"
# faster hashmaps
fxhash = "0.2.1"
# Used in diffing
longest-increasing-subsequence = "0.1.0"
# internall used
2021-05-16 02:06:02 -04:00
log = "0.4"
2021-06-26 02:05:20 -04:00
# # Serialize the Edits for use in Webview/Liveview instances
2021-07-11 18:39:45 -04:00
serde = { version = "1", features = ["derive"], optional = true }
2021-06-23 01:44:48 -04:00
2021-06-26 03:06:29 -04:00
# Backs scopes and unique keys
2021-06-26 02:05:20 -04:00
slotmap = "1.0.3"
2021-06-23 01:44:48 -04:00
appendlist = "1.4.0"
2021-06-25 21:15:33 -04:00
futures-util = "0.3.15"
2021-07-12 02:23:46 -04:00
smallvec = "1.6.1"
2021-06-25 21:15:33 -04:00
[features]
2021-07-12 23:44:20 -04:00
default = ["serialize"]
serialize = ["slotmap/serde", "serde"]