Files
ruvnet--RuView/v2/crates/nvsim-server/Cargo.toml
T
ruv 155c476a7d fix: crates.io publish-blocking manifest gaps (pointcloud license, nvsim-server version req)
wifi-densepose-pointcloud's Cargo.toml had no license/authors/repository
fields at all (crates.io rejects a publish with "missing or empty
metadata fields: license") -- added the standard
authors.workspace/license.workspace/repository.workspace trio every
other crate in this workspace already uses.

nvsim-server's path dependency on nvsim had no version requirement
(crates.io rejects "all dependencies must have a version requirement
specified when publishing") -- pinned to nvsim = "0.3.1", the version
just published.

Found while publishing both crates for the first time; both now publish
cleanly (verified via cargo publish --dry-run before and after).
2026-07-31 00:14:31 -04:00

29 lines
910 B
TOML

[package]
name = "nvsim-server"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
description = "Axum REST + WebSocket server fronting the nvsim NV-diamond pipeline simulator (ADR-092 §6.2)."
repository.workspace = true
keywords = ["nvsim", "axum", "websocket", "magnetometer", "simulator"]
categories = ["science", "web-programming", "simulation"]
[[bin]]
name = "nvsim-server"
path = "src/main.rs"
[dependencies]
nvsim = { path = "../nvsim", version = "0.3.1" }
axum = { workspace = true }
tokio = { workspace = true }
tower = { workspace = true }
tower-http = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
futures-util = "0.3"
clap = { version = "4.5", features = ["derive"] }
thiserror = { workspace = true }