From 6cde841a28b1fac092f1a323227a4eeb60d4247d Mon Sep 17 00:00:00 2001 From: Bryant Luk Date: Wed, 15 May 2024 11:27:50 -0500 Subject: [PATCH] Include the entire repository for cargo package - Add tests and other config files to have a complete package --- Cargo.toml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9f87428..655691a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,11 +9,15 @@ repository = "https://github.com/bluk/bt_bencode" documentation = "https://docs.rs/bt_bencode/" readme = "README.md" include = [ - "src/**/*.rs", - "Cargo.toml", - "README.md", - "LICENSE-APACHE", - "LICENSE-MIT", + "/src", + "/tests", + "/Cargo.toml", + "/CHANGELOG.md", + "/clippy.toml", + "/deny.toml", + "/LICENSE-APACHE", + "/LICENSE-MIT", + "/README.md", ] keywords = ["bencode", "bittorrent", "torrent", "serialization", "serde"] categories = ["encoding", "no-std"]