46 lines
2.6 KiB
TOML
46 lines
2.6 KiB
TOML
# ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
|
# ┃ ██████ ██████ ██████ █ █ █ █ █ █▄ ▀███ █ ┃
|
|
# ┃ ▄▄▄▄▄█ █▄▄▄▄▄ ▄▄▄▄▄█ ▀▀▀▀▀█▀▀▀▀▀ █ ▀▀▀▀▀█ ████████▌▐███ ███▄ ▀█ █ ▀▀▀▀▀ ┃
|
|
# ┃ █▀▀▀▀▀ █▀▀▀▀▀ █▀██▀▀ ▄▄▄▄▄ █ ▄▄▄▄▄█ ▄▄▄▄▄█ ████████▌▐███ █████▄ █ ▄▄▄▄▄ ┃
|
|
# ┃ █ ██████ █ ▀█▄ █ ██████ █ ███▌▐███ ███████▄ █ ┃
|
|
# ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫
|
|
# ┃ Copyright (c) 2017, the Perspective Authors. ┃
|
|
# ┃ ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌ ┃
|
|
# ┃ This file is part of the Perspective library, distributed under the terms ┃
|
|
# ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
|
|
# ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
|
|
|
[package]
|
|
name = "metadata"
|
|
description = "A CLI utility for generating Perspective project metadata like TypeScript definitions."
|
|
edition = "2024"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "perspective_metadata"
|
|
path = "main.rs"
|
|
bench = false
|
|
|
|
[dependencies.cargo-bundle-licenses]
|
|
version = "4.2.0"
|
|
artifact = ["bin"]
|
|
|
|
[dependencies.ts-rs]
|
|
version = "11.0.1"
|
|
features = ["serde-json-impl", "no-serde-warnings"]
|
|
|
|
[dependencies.perspective-server]
|
|
path = "../perspective-server"
|
|
features = ["external-cpp", "disable-cpp"]
|
|
|
|
[dependencies.perspective-client]
|
|
features = ["generate-proto", "omit_metadata", "protobuf-src"]
|
|
path = "../perspective-client"
|
|
|
|
[dependencies.perspective-js]
|
|
path = "../perspective-js"
|
|
features = ["external-cpp"]
|
|
|
|
[dependencies.perspective-viewer]
|
|
path = "../perspective-viewer"
|