difftreelog
doc: add repository manifest field
in: master
9 files changed
Cargo.tomldiffbeforeafterboth1[workspace]2package.version = "0.5.0-pre7"3members = ["crates/*", "bindings/jsonnet", "cmds/jrsonnet", "tests"]4default-members = ["cmds/jrsonnet"]56[workspace.dependencies]7jrsonnet-evaluator = { path = "./crates/jrsonnet-evaluator", version = "0.5.0-pre7" }8jrsonnet-macros = { path = "./crates/jrsonnet-macros", version = "0.5.0-pre7" }9jrsonnet-parser = { path = "./crates/jrsonnet-parser", version = "0.5.0-pre7" }10jrsonnet-interner = { path = "./crates/jrsonnet-interner", version = "0.5.0-pre7" }11jrsonnet-stdlib = { path = "./crates/jrsonnet-stdlib", version = "0.5.0-pre7" }12jrsonnet-cli = { path = "./crates/jrsonnet-cli", version = "0.5.0-pre7" }13jrsonnet-types = { path = "./crates/jrsonnet-types", version = "0.5.0-pre7" }1415jrsonnet-gcmodule = "0.3.5"1617#[profile.test]18#opt-level = 11920[profile.release]21opt-level = 322lto = "fat"23codegen-units = 124debug = 025panic = "abort"26strip = true2728[profile.releasedebug]29inherits = "release"30debug = 231panic = "unwind"32strip = false1[workspace]2package.version = "0.5.0-pre7"3package.repository = "https://github.com/CertainLach/jrsonnet"4members = ["crates/*", "bindings/jsonnet", "cmds/jrsonnet", "tests"]5default-members = ["cmds/jrsonnet"]67[workspace.dependencies]8jrsonnet-evaluator = { path = "./crates/jrsonnet-evaluator", version = "0.5.0-pre7" }9jrsonnet-macros = { path = "./crates/jrsonnet-macros", version = "0.5.0-pre7" }10jrsonnet-parser = { path = "./crates/jrsonnet-parser", version = "0.5.0-pre7" }11jrsonnet-interner = { path = "./crates/jrsonnet-interner", version = "0.5.0-pre7" }12jrsonnet-stdlib = { path = "./crates/jrsonnet-stdlib", version = "0.5.0-pre7" }13jrsonnet-cli = { path = "./crates/jrsonnet-cli", version = "0.5.0-pre7" }14jrsonnet-types = { path = "./crates/jrsonnet-types", version = "0.5.0-pre7" }1516jrsonnet-gcmodule = "0.3.5"1718#[profile.test]19#opt-level = 12021[profile.release]22opt-level = 323lto = "fat"24codegen-units = 125debug = 026panic = "abort"27strip = true2829[profile.releasedebug]30inherits = "release"31debug = 232panic = "unwind"33strip = falsecmds/jrsonnet/Cargo.tomldiffbeforeafterboth--- a/cmds/jrsonnet/Cargo.toml
+++ b/cmds/jrsonnet/Cargo.toml
@@ -2,6 +2,7 @@
name = "jrsonnet"
description = "Rust jsonnet implementation"
version.workspace = true
+repository.workspace = true
authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
license = "MIT"
edition = "2021"
crates/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"
crates/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"
crates/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"
crates/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]
crates/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"
crates/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"
crates/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"