[package]
edition = "2024"
rust-version = "1.95"
name = "beam-core"
version = "0.3.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared core types and workflow/session logic for beam"
homepage = "https://github.com/linuxhenhao/beam"
documentation = "https://github.com/linuxhenhao/beam"
readme = "README.en.md"
keywords = [
"lark",
"feishu",
"cli",
"agent",
"automation",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/linuxhenhao/beam"
resolver = "2"
[lib]
name = "beam_core"
path = "src/lib.rs"
[[test]]
name = "workflow_event_log"
path = "tests/workflow_event_log.rs"
[[test]]
name = "workflow_regression"
path = "tests/workflow_regression.rs"
[[test]]
name = "workflow_resume"
path = "tests/workflow_resume.rs"
[dependencies.anyhow]
version = "1.0.100"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.chrono]
version = "0.4.42"
features = ["serde"]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
[dependencies.sha2]
version = "0.10.9"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.tokio]
version = "1.48.0"
features = [
"fs",
"io-std",
"io-util",
"macros",
"process",
"rt-multi-thread",
"signal",
"sync",
"time",
]
[dependencies.toml]
version = "0.9.8"
[dependencies.uuid]
version = "1.18.1"
features = [
"serde",
"v4",
]
[dev-dependencies.tokio]
version = "1.48.0"
features = [
"fs",
"io-std",
"io-util",
"macros",
"process",
"rt-multi-thread",
"signal",
"sync",
"time",
]