git.delta.rocks / jrsonnet / refs/commits / 3221913a82c2

difftreelog

doc: add repository manifest field

Yaroslav Bolyukin2023-04-17parent: #252cf3b.patch.diff
in: master

9 files changed

modifiedCargo.tomldiffbeforeafterboth
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,5 +1,6 @@
 [workspace]
 package.version = "0.5.0-pre7"
+package.repository = "https://github.com/CertainLach/jrsonnet"
 members = ["crates/*", "bindings/jsonnet", "cmds/jrsonnet", "tests"]
 default-members = ["cmds/jrsonnet"]
 
modifiedcmds/jrsonnet/Cargo.tomldiffbeforeafterboth
before · cmds/jrsonnet/Cargo.toml
1[package]2name = "jrsonnet"3description = "Rust jsonnet implementation"4version.workspace = true5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2021"89[features]10experimental = ["exp-preserve-order", "exp-destruct"]11# Use mimalloc as allocator12mimalloc = ["mimallocator"]13# Experimental feature, which allows to preserve order of object fields14exp-preserve-order = [15    "jrsonnet-evaluator/exp-preserve-order",16    "jrsonnet-cli/exp-preserve-order",17]18# Destructuring of locals19exp-destruct = ["jrsonnet-evaluator/exp-destruct"]20# Iteration over objects yields [key, value] elements21exp-object-iteration = ["jrsonnet-evaluator/exp-object-iteration"]22# Bigint type23exp-bigint = ["jrsonnet-evaluator/exp-bigint", "jrsonnet-cli/exp-bigint"]2425# std.thisFile support26legacy-this-file = ["jrsonnet-cli/legacy-this-file"]2728nightly = ["jrsonnet-evaluator/nightly"]2930[dependencies]31jrsonnet-evaluator.workspace = true32jrsonnet-parser.workspace = true33jrsonnet-cli.workspace = true34jrsonnet-gcmodule.workspace = true3536mimallocator = { version = "0.1.3", optional = true }37thiserror = "1.0"38clap = { version = "4.1", features = ["derive"] }39clap_complete = { version = "4.1" }
after · cmds/jrsonnet/Cargo.toml
1[package]2name = "jrsonnet"3description = "Rust jsonnet implementation"4version.workspace = true5repository.workspace = true6authors = ["Yaroslav Bolyukin <iam@lach.pw>"]7license = "MIT"8edition = "2021"910[features]11experimental = ["exp-preserve-order", "exp-destruct"]12# Use mimalloc as allocator13mimalloc = ["mimallocator"]14# Experimental feature, which allows to preserve order of object fields15exp-preserve-order = [16    "jrsonnet-evaluator/exp-preserve-order",17    "jrsonnet-cli/exp-preserve-order",18]19# Destructuring of locals20exp-destruct = ["jrsonnet-evaluator/exp-destruct"]21# Iteration over objects yields [key, value] elements22exp-object-iteration = ["jrsonnet-evaluator/exp-object-iteration"]23# Bigint type24exp-bigint = ["jrsonnet-evaluator/exp-bigint", "jrsonnet-cli/exp-bigint"]2526# std.thisFile support27legacy-this-file = ["jrsonnet-cli/legacy-this-file"]2829nightly = ["jrsonnet-evaluator/nightly"]3031[dependencies]32jrsonnet-evaluator.workspace = true33jrsonnet-parser.workspace = true34jrsonnet-cli.workspace = true35jrsonnet-gcmodule.workspace = true3637mimallocator = { version = "0.1.3", optional = true }38thiserror = "1.0"39clap = { version = "4.1", features = ["derive"] }40clap_complete = { version = "4.1" }
modifiedcrates/jrsonnet-cli/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-cli/Cargo.toml
+++ b/crates/jrsonnet-cli/Cargo.toml
@@ -2,6 +2,7 @@
 name = "jrsonnet-cli"
 description = "Utilities for building jrsonnet CLIs"
 version.workspace = true
+repository.workspace = true
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2021"
modifiedcrates/jrsonnet-evaluator/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-evaluator/Cargo.toml
+++ b/crates/jrsonnet-evaluator/Cargo.toml
@@ -2,6 +2,7 @@
 name = "jrsonnet-evaluator"
 description = "jsonnet interpreter"
 version.workspace = true
+repository.workspace = true
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2021"
modifiedcrates/jrsonnet-interner/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-interner/Cargo.toml
+++ b/crates/jrsonnet-interner/Cargo.toml
@@ -2,6 +2,7 @@
 name = "jrsonnet-interner"
 description = "Jrsonnet string interning"
 version.workspace = true
+repository.workspace = true
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2021"
modifiedcrates/jrsonnet-macros/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-macros/Cargo.toml
+++ b/crates/jrsonnet-macros/Cargo.toml
@@ -4,6 +4,7 @@
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 version.workspace = true
+repository.workspace = true
 edition = "2021"
 
 [lib]
modifiedcrates/jrsonnet-parser/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-parser/Cargo.toml
+++ b/crates/jrsonnet-parser/Cargo.toml
@@ -2,6 +2,7 @@
 name = "jrsonnet-parser"
 description = "jsonnet language parser and AST"
 version.workspace = true
+repository.workspace = true
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2021"
modifiedcrates/jrsonnet-stdlib/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-stdlib/Cargo.toml
+++ b/crates/jrsonnet-stdlib/Cargo.toml
@@ -2,6 +2,7 @@
 name = "jrsonnet-stdlib"
 description = "jsonnet standard library packaged as crate"
 version.workspace = true
+repository.workspace = true
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2021"
modifiedcrates/jrsonnet-types/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-types/Cargo.toml
+++ b/crates/jrsonnet-types/Cargo.toml
@@ -2,6 +2,7 @@
 name = "jrsonnet-types"
 description = "Jrsonnet type system definition"
 version.workspace = true
+repository.workspace = true
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2021"