From dcbbc2feb10d8550e22c4064f7a332bd71d049e8 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Tue, 9 Jan 2024 14:01:44 +0100 Subject: [PATCH] Include `Cargo.lock` in `rerun-cli` crate This allows users to pass in `--locked` when installing `rerun-cli` with `cargo-install`. See https://doc.rust-lang.org/cargo/commands/cargo-install.html#dealing-with-the-lockfile --- crates/rerun-cli/Cargo.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/crates/rerun-cli/Cargo.toml b/crates/rerun-cli/Cargo.toml index afc37c333928..641763930240 100644 --- a/crates/rerun-cli/Cargo.toml +++ b/crates/rerun-cli/Cargo.toml @@ -5,7 +5,13 @@ categories = ["visualization", "computer-vision"] description = "Log images, point clouds, etc, and visualize them effortlessly" edition.workspace = true homepage.workspace = true -include.workspace = true +include = [ + "../../Cargo.lock", # So that users can pass `--locked` to `cargo install` + "../../LICENSE-APACHE", + "../../LICENSE-MIT", + "**/*.rs", + "Cargo.toml", +] keywords = ["mesh", "plotting", "point-cloud", "robotics", "visualization"] license.workspace = true publish = true