difftreelog
doc: add repository manifest field
in: master
9 files changed
Cargo.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"]
cmds/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.tomldiffbeforeafterboth1[package]2name = "jrsonnet-parser"3description = "jsonnet language parser and AST"4version.workspace = true5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2021"89[features]10default = []11exp-destruct = []12# Implement serialization of AST using structdump13#14# Structdump generates code, which exactly replicated passed AST15# Contrary to serde, has no code bloat problem, and is recommended16#17# The only limitation is serialized form is only useable if built from build script18structdump = ["dep:structdump", "jrsonnet-interner/structdump"]19# Implement serialization of AST using serde20#21# Warning: as serde doesn't deduplicate strings, `Source` struct will bloat22# output binary with repeating source code. To resolve this issue, you should either23# override serialization of this struct using custom `Serializer`/`Deserializer`,24# not rely on Source, and fill its `source_code` with empty value, or use `structdump`25# instead26serde = ["dep:serde"]2728[dependencies]29jrsonnet-interner.workspace = true30jrsonnet-gcmodule.workspace = true3132static_assertions = "1.1"3334peg = "0.8.1"3536serde = { version = "1.0", features = ["derive", "rc"], optional = true }37structdump = { version = "0.2.0", features = ["derive"], optional = true }1[package]2name = "jrsonnet-parser"3description = "jsonnet language parser and AST"4version.workspace = true5repository.workspace = true6authors = ["Yaroslav Bolyukin <iam@lach.pw>"]7license = "MIT"8edition = "2021"910[features]11default = []12exp-destruct = []13# Implement serialization of AST using structdump14#15# Structdump generates code, which exactly replicated passed AST16# Contrary to serde, has no code bloat problem, and is recommended17#18# The only limitation is serialized form is only useable if built from build script19structdump = ["dep:structdump", "jrsonnet-interner/structdump"]20# Implement serialization of AST using serde21#22# Warning: as serde doesn't deduplicate strings, `Source` struct will bloat23# output binary with repeating source code. To resolve this issue, you should either24# override serialization of this struct using custom `Serializer`/`Deserializer`,25# not rely on Source, and fill its `source_code` with empty value, or use `structdump`26# instead27serde = ["dep:serde"]2829[dependencies]30jrsonnet-interner.workspace = true31jrsonnet-gcmodule.workspace = true3233static_assertions = "1.1"3435peg = "0.8.1"3637serde = { version = "1.0", features = ["derive", "rc"], optional = true }38structdump = { version = "0.2.0", features = ["derive"], optional = true }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"