[package]
edition = "2024"
name = "ursula-runtime"
version = "0.1.2"
authors = ["The Ursula contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Per-core actor runtime for Ursula: hot ring, cold-tier flush, and the replaceable group-engine boundary."
homepage = "https://ursula.tonbo.io"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/tonbo-io/ursula"
[lib]
name = "ursula_runtime"
path = "src/lib.rs"
[[bin]]
name = "ursula-runtime-stress"
path = "src/bin/ursula-runtime-stress.rs"
[[test]]
name = "s3_cold_path"
path = "tests/s3_cold_path.rs"
[dependencies.bytes]
version = "1.7"
features = ["serde"]
[dependencies.opendal]
version = "0.51"
features = [
"services-fs",
"services-memory",
"services-s3",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1.39"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
]
[dependencies.ursula-shard]
version = "0.1.0"
[dependencies.ursula-stream]
version = "0.1.0"