2026-03-21 14:34:15 +00:00
|
|
|
[package]
|
|
|
|
|
name = "sunbeam"
|
2026-03-24 15:29:05 +00:00
|
|
|
version = "1.1.1"
|
2026-03-21 14:34:15 +00:00
|
|
|
edition = "2024"
|
2026-03-24 12:17:08 +00:00
|
|
|
description = "Sunbeam Studios SDK, CLI, and ecosystem integrations"
|
2026-03-21 14:34:15 +00:00
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "sunbeam"
|
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
feat: wire 15 service subcommands into CLI, remove old user command
Adds Verb variants: auth, vcs, chat, search, storage, media, mon,
vault, people, docs, meet, drive, mail, cal, find. Each delegates
to the corresponding SDK cli.rs dispatch function.
Removes the legacy `user` command (replaced by `auth identity`).
Renames Get's -o to --kubectl-output to avoid conflict with the
new global -o/--output flag. Enables all SDK features in binary.
2026-03-21 22:20:15 +00:00
|
|
|
sunbeam-sdk = { path = "../sunbeam-sdk", features = ["all", "cli"] }
|
2026-03-21 14:34:15 +00:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
|
clap = { version = "4", features = ["derive"] }
|
|
|
|
|
chrono = "0.4"
|
|
|
|
|
tracing = "0.1"
|
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
|
rustls = { version = "0.23", features = ["ring"] }
|