From 15ce4fb21081b4c8588cf13a7c313e5cc7f6de8b Mon Sep 17 00:00:00 2001 From: Georg Semmler Date: Wed, 11 Dec 2024 13:18:44 +0100 Subject: [PATCH] Exclude testdata from published crate This commit removes the test data from the published crate. Fixes #389 --- os_info/Cargo.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/os_info/Cargo.toml b/os_info/Cargo.toml index 89bcfc9..c7a67ba 100644 --- a/os_info/Cargo.toml +++ b/os_info/Cargo.toml @@ -12,6 +12,12 @@ categories = ["os"] license = "MIT" edition = "2018" rust-version = "1.60" +include = [ + "Cargo.toml", + "LICENSE", + "src/**/*.rs", + "README.md", +] [features] default = ["serde"]