- interner impls logically separate from API in orchid-base (default host interner still in base for testing) - error reporting, logging, and a variety of other features passed down via context in extension, not yet in host to maintain library-ish profile, should consider options - no global spawn mechanic, the host has a spawn function but extensions only get a stash for enqueuing async work in sync callbacks which is then explicitly, manually, and with strict order popped and awaited - still deadlocks nondeterministically for some ungodly reason
18 lines
555 B
TOML
18 lines
555 B
TOML
[package]
|
|
name = "orchid-api"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
ordered-float = "5.0.0"
|
|
orchid-api-traits = { version = "0.1.0", path = "../orchid-api-traits" }
|
|
orchid-api-derive = { version = "0.1.0", path = "../orchid-api-derive" }
|
|
futures = { version = "0.3.31", features = ["std"], default-features = false }
|
|
itertools = "0.14.0"
|
|
unsync-pipe = { version = "0.2.0", path = "../unsync-pipe" }
|
|
|
|
[dev-dependencies]
|
|
test_executors = "0.3.5"
|