Workspace deps for the seven Rhai utility modules that follow in this PR. `rand`, `base64`, `uuid`, `chrono`, `serde_json` are already in the workspace and reused as-is — only the genuinely new ones land here. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
28 lines
588 B
TOML
28 lines
588 B
TOML
[package]
|
|
name = "picloud-executor-core"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
picloud-shared.workspace = true
|
|
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
thiserror.workspace = true
|
|
tracing.workspace = true
|
|
uuid.workspace = true
|
|
chrono.workspace = true
|
|
rhai.workspace = true
|
|
|
|
# Stdlib utility modules — see crates/executor-core/src/sdk/stdlib/.
|
|
regex.workspace = true
|
|
rand.workspace = true
|
|
base64.workspace = true
|
|
hex.workspace = true
|
|
percent-encoding.workspace = true
|