difftreelog
chore change author field in cargo manifests
in: master
To match git signature Fixes #28
6 files changed
bindings/jsonnet/Cargo.tomldiffbeforeafterboth--- a/bindings/jsonnet/Cargo.toml
+++ b/bindings/jsonnet/Cargo.toml
@@ -1,10 +1,8 @@
[package]
name = "jsonnet"
version = "0.3.2"
-authors = ["Лач <iam@lach.pw>"]
+authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
edition = "2018"
-
-# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.2" }
cmds/jrsonnet/Cargo.tomldiffbeforeafterboth--- a/cmds/jrsonnet/Cargo.toml
+++ b/cmds/jrsonnet/Cargo.toml
@@ -2,11 +2,9 @@
name = "jrsonnet"
description = "Rust jsonnet implementation"
version = "0.3.2"
-authors = ["Лач <iam@lach.pw>"]
+authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
license = "MIT"
edition = "2018"
-
-# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
crates/jrsonnet-cli/Cargo.tomldiffbeforeafterboth--- a/crates/jrsonnet-cli/Cargo.toml
+++ b/crates/jrsonnet-cli/Cargo.toml
@@ -2,10 +2,8 @@
name = "jrsonnet-cli"
description = "Utilities for building jrsonnet CLIs"
version = "0.3.2"
-authors = ["Лач <iam@lach.pw>"]
+authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
edition = "2018"
-
-# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.2", features = ["explaining-traces"] }
crates/jrsonnet-evaluator/Cargo.tomldiffbeforeafterboth--- a/crates/jrsonnet-evaluator/Cargo.toml
+++ b/crates/jrsonnet-evaluator/Cargo.toml
@@ -2,11 +2,9 @@
name = "jrsonnet-evaluator"
description = "jsonnet interpreter"
version = "0.3.2"
-authors = ["Лач <iam@lach.pw>"]
+authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
license = "MIT"
edition = "2018"
-
-# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["serialized-stdlib", "faster", "explaining-traces", "serde-json"]
crates/jrsonnet-parser/Cargo.tomldiffbeforeafterboth1[package]2name = "jrsonnet-parser"3description = "jsonnet language parser and AST"4version = "0.3.2"5authors = ["Лач <iam@lach.pw>"]6license = "MIT"7edition = "2018"89[features]10default = []11serialize = ["serde"]12deserialize = ["serde"]13# Adds ability to dump AST as source code for easy embedding14dump = ["structdump", "structdump-derive"]1516[dependencies]17peg = "0.6.3"18unescape = "0.1.0"1920serde = { version = "1.0.117", features = ["derive", "rc"], optional = true }21structdump = { version = "0.1.2", optional = true }22structdump-derive = { version = "0.1.2", optional = true }2324[dev-dependencies]25jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.2" }1[package]2name = "jrsonnet-parser"3description = "jsonnet language parser and AST"4version = "0.3.2"5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2018"89[features]10default = []11serialize = ["serde"]12deserialize = ["serde"]13# Adds ability to dump AST as source code for easy embedding14dump = ["structdump", "structdump-derive"]1516[dependencies]17peg = "0.6.3"18unescape = "0.1.0"1920serde = { version = "1.0.117", features = ["derive", "rc"], optional = true }21structdump = { version = "0.1.2", optional = true }22structdump-derive = { version = "0.1.2", optional = true }2324[dev-dependencies]25jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.2" }crates/jrsonnet-stdlib/Cargo.tomldiffbeforeafterboth--- a/crates/jrsonnet-stdlib/Cargo.toml
+++ b/crates/jrsonnet-stdlib/Cargo.toml
@@ -2,7 +2,7 @@
name = "jrsonnet-stdlib"
description = "jsonnet standard library packaged as crate"
version = "0.3.2"
-authors = ["Лач <iam@lach.pw>"]
+authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
license = "MIT"
edition = "2018"