From d0b5aca0b58a09615731ea4f0a96b2c262fb8479 Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Tue, 18 Feb 2025 19:00:11 +0200 Subject: [PATCH] build: Don't publish some bindings crates ...attempt to fix "cargo dist" failure. --- bindings/go/Cargo.toml | 1 + bindings/java/Cargo.toml | 1 + bindings/python/Cargo.toml | 1 + 3 files changed, 3 insertions(+) diff --git a/bindings/go/Cargo.toml b/bindings/go/Cargo.toml index 0c0d3c6d5..0a35db840 100644 --- a/bindings/go/Cargo.toml +++ b/bindings/go/Cargo.toml @@ -5,6 +5,7 @@ authors.workspace = true edition.workspace = true license.workspace = true repository.workspace = true +publish = false [lib] name = "_limbo_go" diff --git a/bindings/java/Cargo.toml b/bindings/java/Cargo.toml index fd38d1e65..1cbb3ff82 100644 --- a/bindings/java/Cargo.toml +++ b/bindings/java/Cargo.toml @@ -5,6 +5,7 @@ authors.workspace = true edition.workspace = true license.workspace = true repository.workspace = true +publish = false [lib] name = "_limbo_java" diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml index 43639f94c..d93baf1c8 100644 --- a/bindings/python/Cargo.toml +++ b/bindings/python/Cargo.toml @@ -5,6 +5,7 @@ authors.workspace = true edition.workspace = true license.workspace = true repository.workspace = true +publish = false [lib] name = "_limbo"