[package]
edition = "2021"
rust-version = "1.95"
name = "graphrefly-core"
version = "0.0.7"
authors = ["David Chen<clfhhc@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GraphReFly handle-protocol core dispatcher"
homepage = "https://graphrefly.dev"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/graphrefly/graphrefly-rs"
[features]
default = [
"std",
"tokio",
]
loom-checked = []
std = []
tokio = ["dep:tokio"]
[lib]
name = "graphrefly_core"
path = "src/lib.rs"
[[example]]
name = "profile_disjoint_fn_fire"
path = "examples/profile_disjoint_fn_fire.rs"
[[example]]
name = "profile_disjoint_state_emit"
path = "examples/profile_disjoint_state_emit.rs"
[[example]]
name = "profile_st_emit"
path = "examples/profile_st_emit.rs"
[[test]]
name = "batch"
path = "tests/batch.rs"
[[test]]
name = "cascade_depth"
path = "tests/cascade_depth.rs"
[[test]]
name = "d260_d261_wave_end_mailbox_drain"
path = "tests/d260_d261_wave_end_mailbox_drain.rs"
[[test]]
name = "d263_terminal_as_real_input"
path = "tests/d263_terminal_as_real_input.rs"
[[test]]
name = "dep_batch"
path = "tests/dep_batch.rs"
[[test]]
name = "dispatcher"
path = "tests/dispatcher.rs"
[[test]]
name = "drop_refcount"
path = "tests/drop_refcount.rs"
[[test]]
name = "group_parallelism"
path = "tests/group_parallelism.rs"
[[test]]
name = "inspection"
path = "tests/inspection.rs"
[[test]]
name = "invalidate"
path = "tests/invalidate.rs"
[[test]]
name = "lock_discipline"
path = "tests/lock_discipline.rs"
[[test]]
name = "lock_released"
path = "tests/lock_released.rs"
[[test]]
name = "loom_subscription"
path = "tests/loom_subscription.rs"
[[test]]
name = "meta_teardown"
path = "tests/meta_teardown.rs"
[[test]]
name = "pause"
path = "tests/pause.rs"
[[test]]
name = "phase_g_cleanup_node"
path = "tests/phase_g_cleanup_node.rs"
[[test]]
name = "producer"
path = "tests/producer.rs"
[[test]]
name = "proptest_invariants"
path = "tests/proptest_invariants.rs"
[[test]]
name = "resubscribable"
path = "tests/resubscribable.rs"
[[test]]
name = "setdeps"
path = "tests/setdeps.rs"
[[test]]
name = "sink_snapshot"
path = "tests/sink_snapshot.rs"
[[test]]
name = "slice_e2_cleanup"
path = "tests/slice_e2_cleanup.rs"
[[test]]
name = "slice_f_corrections"
path = "tests/slice_f_corrections.rs"
[[test]]
name = "slice_h"
path = "tests/slice_h.rs"
[[test]]
name = "subscription"
path = "tests/subscription.rs"
[[test]]
name = "teardown"
path = "tests/teardown.rs"
[[test]]
name = "terminal"
path = "tests/terminal.rs"
[[test]]
name = "topology"
path = "tests/topology.rs"
[[bench]]
name = "dispatcher"
path = "benches/dispatcher.rs"
harness = false
[[bench]]
name = "floor_compare"
path = "benches/floor_compare.rs"
harness = false
[[bench]]
name = "group_scaling"
path = "benches/group_scaling.rs"
harness = false
[[bench]]
name = "lock_strategy"
path = "benches/lock_strategy.rs"
harness = false
[[bench]]
name = "minimal_handle_core"
path = "benches/minimal_handle_core.rs"
harness = false
[dependencies.ahash]
version = "0.8"
[dependencies.hex]
version = "0.4"
[dependencies.indexmap]
version = "2.6"
[dependencies.parking_lot]
version = "0.12"
features = ["arc_lock"]
default-features = false
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.smallvec]
version = "1.13"
features = [
"union",
"const_new",
]
[dependencies.static_assertions]
version = "1.1"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"time",
"sync",
"rt",
"macros",
]
optional = true
default-features = false
[dependencies.tracing]
version = "0.1"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.crossbeam-channel]
version = "0.5"
[dev-dependencies.dashmap]
version = "6"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"time",
"sync",
"rt",
"macros",
"rt-multi-thread",
"test-util",
]
default-features = false
[target."cfg(loom)".dev-dependencies.loom]
version = "0.7"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(loom)"]