From 50f2ad6f52ab924470b59deaaee31d631d8b7676 Mon Sep 17 00:00:00 2001 From: Corwin Date: Fri, 29 Mar 2024 21:16:48 +0000 Subject: [PATCH] exclude tests / examples / benches from the published packages --- agb-hashmap/Cargo.toml | 1 + agb/Cargo.toml | 1 + tracker/agb-tracker/Cargo.toml | 1 + 3 files changed, 3 insertions(+) diff --git a/agb-hashmap/Cargo.toml b/agb-hashmap/Cargo.toml index 3d8fc30d..4ff96d39 100644 --- a/agb-hashmap/Cargo.toml +++ b/agb-hashmap/Cargo.toml @@ -5,6 +5,7 @@ edition = "2021" license = "MPL-2.0" description = "A simple no_std hashmap implementation intended for use in the `agb` library" repository = "https://github.com/agbrs/agb" +exclude = ["/benches"] [features] allocator_api = [] diff --git a/agb/Cargo.toml b/agb/Cargo.toml index 7b4c49ce..1fa5d7a0 100644 --- a/agb/Cargo.toml +++ b/agb/Cargo.toml @@ -7,6 +7,7 @@ description = "Library for Game Boy Advance Development" license = "MPL-2.0" repository = "https://github.com/agbrs/agb" homepage = "https://agbrs.dev" +exclude = ["/tests", "/examples"] [features] default = ["backtrace", "testing"] diff --git a/tracker/agb-tracker/Cargo.toml b/tracker/agb-tracker/Cargo.toml index 5505c383..fec73310 100644 --- a/tracker/agb-tracker/Cargo.toml +++ b/tracker/agb-tracker/Cargo.toml @@ -6,6 +6,7 @@ edition = "2021" license = "MPL-2.0" description = "Library for playing tracker music. Designed for use with the agb library for the Game Boy Advance." repository = "https://github.com/agbrs/agb" +exclude = ["/examples"] [features] default = ["xm", "midi"]