[package]
edition = "2024"
rust-version = "1.91"
name = "roam"
version = "7.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core Roam library crate"
homepage = "https://github.com/bearcove/roam"
documentation = "https://docs.rs/roam"
readme = "README.md"
keywords = [
"rpc",
"ipc",
"shared-memory",
"serde",
"networking",
]
categories = [
"network-programming",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/bearcove/roam"
resolver = "2"
[package.metadata."docs.rs"]
rustdoc-args = [
"--html-in-header",
"arborium-header.html",
]
[features]
default = ["runtime"]
runtime = ["dep:roam-core"]
[lib]
name = "roam"
path = "src/lib.rs"
[[test]]
name = "service_macro_shared"
path = "tests/service_macro_shared.rs"
[[test]]
name = "service_macro_tests"
path = "tests/service_macro_tests.rs"
[[test]]
name = "shm_service_macro_tests"
path = "tests/shm_service_macro_tests.rs"
[dependencies.facet]
version = "0.44.1"
features = [
"camino",
"reflect",
]
[dependencies.facet-postcard]
version = "0.44.1"
features = ["camino"]
[dependencies.roam-core]
version = "7.3.0"
optional = true
[dependencies.roam-hash]
version = "7.3.0"
[dependencies.roam-service-macros]
version = "7.3.0"
[dependencies.roam-types]
version = "7.3.0"
[dev-dependencies.tempfile]
version = "3.23"
[dev-dependencies.tokio]
version = "1"
features = [
"sync",
"rt",
"time",
"macros",
"io-util",
"macros",
"rt-multi-thread",
"net",
]