2024-02-05 01:07:33 +00:00
|
|
|
[package]
|
2024-02-05 12:33:31 +00:00
|
|
|
name = "reactive_graph"
|
2024-09-08 23:40:32 +00:00
|
|
|
version = "0.1.0-beta5"
|
2024-04-27 15:16:48 +00: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
|
2024-08-12 23:25:47 +00:00
|
|
|
edition.workspace = true
|
2024-02-05 01:07:33 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-02-17 01:37:59 +00:00
|
|
|
any_spawner = { workspace = true }
|
2024-02-05 01:55:48 +00:00
|
|
|
or_poisoned = { workspace = true }
|
2024-08-11 00:01:41 +00:00
|
|
|
futures = "0.3.30"
|
2024-04-27 15:16:48 +00:00
|
|
|
hydration_context = { workspace = true, optional = true }
|
2024-08-11 00:01:41 +00: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 14:05:12 +00:00
|
|
|
send_wrapper = { version = "0.6.0", features = ["futures"] }
|
2024-02-05 01:07:33 +00:00
|
|
|
|
2024-05-11 20:31:43 +00:00
|
|
|
[target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dependencies]
|
2024-08-13 22:46:34 +00:00
|
|
|
web-sys = "0.3.70"
|
2024-05-11 20:31:43 +00:00
|
|
|
|
2024-02-05 01:07:33 +00:00
|
|
|
[dev-dependencies]
|
2024-08-11 00:01:41 +00:00
|
|
|
tokio = { version = "1.39", features = ["rt-multi-thread", "macros"] }
|
|
|
|
tokio-test = { version = "0.4.4" }
|
2024-05-11 21:18:47 +00:00
|
|
|
any_spawner = { workspace = true, features = ["futures-executor", "tokio"] }
|
2024-02-05 01:07:33 +00:00
|
|
|
|
|
|
|
[features]
|
2024-02-05 12:33:31 +00:00
|
|
|
nightly = []
|
2024-02-19 02:22:03 +00:00
|
|
|
serde = ["dep:serde"]
|
2024-02-05 01:07:33 +00:00
|
|
|
tracing = ["dep:tracing"]
|
2024-03-16 20:33:15 +00:00
|
|
|
hydration = ["dep:hydration_context"]
|
2024-06-28 18:57:54 +00:00
|
|
|
effects = [
|
|
|
|
] # whether to run effects: should be disabled for something like server rendering
|
2024-03-24 00:53:46 +00:00
|
|
|
sandboxed-arenas = []
|
2024-02-05 01:07:33 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
2024-08-23 21:34:05 +00:00
|
|
|
|
|
|
|
[package.metadata.cargo-all-features]
|
|
|
|
denylist = ["tracing"]
|