diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 1444902a5..8d2b41c51 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -13,6 +13,18 @@ repository = { workspace = true } documentation = { workspace = true } keywords = { workspace = true } +include = [ + "/LICENSE", + "/build.rs", + "/examples/", + "/src/", + "/testing/", + "/tests/", + "!*.pending-snap", + "!*.snap*", + "/tests/cli-reference@.md.snap" +] + [[bin]] name = "jj" path = "src/main.rs" diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 760578f8a..d7a68f6a1 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -12,6 +12,16 @@ repository = { workspace = true } documentation = { workspace = true } readme = { workspace = true } +include = [ + "/LICENSE", + "/benches/", + "/src/", + "/tests/", + "!*.pending-snap", + "!*.snap*", +] + + [[test]] name = "runner" diff --git a/lib/proc-macros/Cargo.toml b/lib/proc-macros/Cargo.toml index 4bba85cfc..e26bfa26b 100644 --- a/lib/proc-macros/Cargo.toml +++ b/lib/proc-macros/Cargo.toml @@ -11,6 +11,8 @@ repository = { workspace = true } documentation = { workspace = true } readme = { workspace = true } +include = ["/LICENSE", "/src/"] + [lib] proc-macro = true