difftreelog
build disable publishing for some crates
in: master
3 files changed
bindings/jsonnet/Cargo.tomldiffbeforeafterboth--- a/bindings/jsonnet/Cargo.toml
+++ b/bindings/jsonnet/Cargo.toml
@@ -1,9 +1,11 @@
[package]
name = "jsonnet"
+description = "Rust implementation of libjsonnet.so"
version = "0.3.6"
authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
license = "MIT"
edition = "2018"
+publish = false
[dependencies]
jrsonnet-interner = { path = "../../crates/jrsonnet-interner", version = "0.3.6" }
cmds/jrsonnet/Cargo.tomldiffbeforeafterboth1[package]2name = "jrsonnet"3description = "Rust jsonnet implementation"4version = "0.3.6"5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2018"89[features]10default = []11# Use mimalloc as allocator12mimalloc = []1314[dependencies]15jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.6" }16jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.6" }17jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.3.6" }18# TODO: Fix mimalloc compile errors, and use them19mimallocator = { version = "0.1.3", optional = true }20thiserror = "1.0"2122[dependencies.clap]23git = "https://github.com/clap-rs/clap"24rev = "92f744cc49d12d32261010d355dc215a6d2487b9"2526[dependencies.clap_generate]27git = "https://github.com/clap-rs/clap"28rev = "92f744cc49d12d32261010d355dc215a6d2487b9"1[package]2name = "jrsonnet"3description = "Rust jsonnet implementation"4version = "0.3.6"5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2018"8publish = false910[features]11default = []12# Use mimalloc as allocator13mimalloc = []1415[dependencies]16jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.6" }17jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.6" }18jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.3.6" }19# TODO: Fix mimalloc compile errors, and use them20mimallocator = { version = "0.1.3", optional = true }21thiserror = "1.0"2223[dependencies.clap]24git = "https://github.com/clap-rs/clap"25rev = "92f744cc49d12d32261010d355dc215a6d2487b9"2627[dependencies.clap_generate]28git = "https://github.com/clap-rs/clap"29rev = "92f744cc49d12d32261010d355dc215a6d2487b9"crates/jrsonnet-cli/Cargo.tomldiffbeforeafterboth--- a/crates/jrsonnet-cli/Cargo.toml
+++ b/crates/jrsonnet-cli/Cargo.toml
@@ -5,6 +5,7 @@
authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
license = "MIT"
edition = "2018"
+publish = false
[dependencies]
jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.6", features = ["explaining-traces"] }