33 lines
944 B
TOML
33 lines
944 B
TOML
[package]
|
|
name = "lumbridge-compute"
|
|
description = "Lumbridge Compute — safe AI workload orchestration for accelerator nodes."
|
|
readme = "README.md"
|
|
keywords = ["dgx-spark", "gb10", "llm", "orchestration", "unified-memory"]
|
|
categories = ["command-line-utilities"]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
authors = ["Karti Tripathi"]
|
|
repository = "https://git.karti.ai/lumbridge-public/compute"
|
|
rust-version = "1.88"
|
|
|
|
[[bin]]
|
|
name = "lumbridge-compute"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "4", features = ["derive"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_yaml = "0.9"
|
|
serde_json = "1"
|
|
anyhow = "1"
|
|
libc = "0.2"
|
|
rmcp = { version = "3", features = ["server", "transport-io", "macros"] }
|
|
schemars = "1"
|
|
tokio = { version = "1", features = ["rt", "io-std", "fs", "time"] }
|
|
|
|
# Lives at the workspace root upstream; Cargo ignores [profile] in members.
|
|
[profile.release]
|
|
strip = true
|
|
lto = true
|