57 lines
3.1 KiB
TOML
57 lines
3.1 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). ┃
|
|
# ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
|
|
|
[workspace]
|
|
resolver = "2"
|
|
default-members = [
|
|
"rust/perspective",
|
|
"rust/perspective-client",
|
|
"rust/perspective-js",
|
|
"rust/perspective-python",
|
|
"rust/perspective-server",
|
|
"rust/perspective-viewer",
|
|
]
|
|
members = [
|
|
"rust/lint",
|
|
"rust/metadata",
|
|
"rust/bundle",
|
|
"rust/perspective",
|
|
"rust/perspective-client",
|
|
"rust/perspective-js",
|
|
"rust/perspective-python",
|
|
"rust/perspective-server",
|
|
"rust/perspective-viewer",
|
|
"examples/rust-axum",
|
|
]
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
opt-level = "s"
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
opt-level = "z"
|
|
codegen-units = 1
|
|
lto = true
|
|
strip = true
|
|
|
|
# These are only respected when `cargo` is invoked from the project root
|
|
[patch.crates-io]
|
|
# simd-adler32 = { git = "https://github.com/mcountryman/simd-adler32.git", rev = "b279034d9eb554c3e5e0af523db044f08d8297ba" }
|
|
protobuf-src = { git = "https://github.com/carlocorradini/rust-protobuf-native.git", rev = "1aba500e469f8bdc384a0fe9e69c189fda72e059" }
|
|
perspective-client = { path = "rust/perspective-client" }
|
|
perspective-server = { path = "rust/perspective-server" }
|
|
perspective-js = { path = "rust/perspective-js" }
|
|
perspective = { path = "rust/perspective" }
|
|
perspective-viewer = { path = "rust/perspective-viewer" }
|
|
perspective-python = { path = "rust/perspective-python" }
|