Jesús Pérez b6eeaee4da
Some checks failed
Build and Test / Validate Setup (push) Has been cancelled
Build and Test / Build (darwin-amd64) (push) Has been cancelled
Build and Test / Build (darwin-arm64) (push) Has been cancelled
Build and Test / Build (linux-amd64) (push) Has been cancelled
Build and Test / Build (windows-amd64) (push) Has been cancelled
Build and Test / Build (linux-arm64) (push) Has been cancelled
Build and Test / Security Audit (push) Has been cancelled
Build and Test / Package Results (push) Has been cancelled
Build and Test / Quality Gate (push) Has been cancelled
feat: config-driven topology — replace hardcoded provisioning streams with JSON config
All commands now read stream/consumer definitions from a topology JSON file
  (--config flag or NATS_STREAMS_CONFIG env). nats pub publishes to exact
  subjects without auto-prefixing. Category changed from provisioning to nats
2026-03-11 03:17:08 +00:00

33 lines
596 B
TOML

[package]
name = "nu_plugin_nats"
version = "0.111.0"
edition = "2021"
authors = ["Jesus Perez <jesus@librecloud.online>"]
description = "Nushell plugin for NATS JetStream operations with config-driven topology"
license = "MIT"
[dependencies]
nu-plugin = "0.111.0"
nu-protocol = "0.111.0"
async-nats = "0.46"
bytes = "1"
futures = "0.3"
serde_json = "1"
thiserror = "2"
chrono = "0.4"
interprocess = "^2.3.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.tokio]
version = "1"
features = [
"rt",
"time",
]
[dev-dependencies]
nu-plugin-test-support = "0.111.0"