leptos/reactive_graph/Cargo.toml

47 lines
1.4 KiB
TOML
Raw Permalink Normal View History

[package]
2024-02-05 20:33:31 +08:00
name = "reactive_graph"
2024-08-15 08:13:14 +08:00
version = "0.1.0-beta2"
2024-04-27 23:16:48 +08:00
authors = ["Greg Johnston"]
license = "MIT"
readme = "../README.md"
repository = "https://github.com/leptos-rs/leptos"
description = "A fine-grained reactive graph for building user interfaces."
rust-version.workspace = true
edition.workspace = true
[dependencies]
any_spawner = { workspace = true }
or_poisoned = { workspace = true }
2024-08-11 08:01:41 +08:00
futures = "0.3.30"
2024-04-27 23:16:48 +08:00
hydration_context = { workspace = true, optional = true }
2024-08-11 08:01:41 +08:00
pin-project-lite = "0.2.14"
rustc-hash = "2.0"
serde = { version = "1.0", features = ["derive"], optional = true }
slotmap = "1.0"
thiserror = "1.0"
tracing = { version = "0.1.40", optional = true }
guardian = "1.2"
async-lock = "3.4.0"
2024-06-15 22:05:12 +08:00
send_wrapper = { version = "0.6.0", features = ["futures"] }
[target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dependencies]
web-sys = "0.3.70"
[dev-dependencies]
2024-08-11 08:01:41 +08:00
tokio = { version = "1.39", features = ["rt-multi-thread", "macros"] }
tokio-test = { version = "0.4.4" }
2024-05-12 05:18:47 +08:00
any_spawner = { workspace = true, features = ["futures-executor", "tokio"] }
[features]
2024-02-05 20:33:31 +08:00
nightly = []
2024-02-19 10:22:03 +08:00
serde = ["dep:serde"]
tracing = ["dep:tracing"]
2024-03-17 04:33:15 +08:00
hydration = ["dep:hydration_context"]
2024-06-29 02:57:54 +08:00
effects = [
] # whether to run effects: should be disabled for something like server rendering
2024-03-24 08:53:46 +08:00
sandboxed-arenas = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]