mirror of
https://github.com/ruvnet/RuView
synced 2026-07-31 18:51:42 +00:00
155c476a7d
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).
32 lines
753 B
TOML
32 lines
753 B
TOML
[package]
|
|
name = "wifi-densepose-pointcloud"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Real-time dense point cloud from camera depth + WiFi CSI tomography"
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[[bin]]
|
|
name = "ruview-pointcloud"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
axum = { workspace = true }
|
|
tower-http = { workspace = true }
|
|
clap = { version = "4", features = ["derive"] }
|
|
chrono = "0.4"
|
|
dirs = "5"
|
|
reqwest = { version = "0.12", features = ["json"], default-features = false }
|
|
|
|
[dev-dependencies]
|
|
criterion = { workspace = true }
|
|
|
|
[[bench]]
|
|
name = "splats_bench"
|
|
harness = false
|