From 9367ffe7b26b39973df22a7b2f8b8d1ef040f353 Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Wed, 06 Jan 2021 03:45:35 +0000 Subject: [PATCH] chore: change author field in cargo manifests To match git signature Fixes #28 --- --- a/bindings/jsonnet/Cargo.toml +++ b/bindings/jsonnet/Cargo.toml @@ -1,10 +1,8 @@ [package] name = "jsonnet" version = "0.3.2" -authors = ["Лач "] +authors = ["Yaroslav Bolyukin "] 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" } --- 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 = ["Лач "] +authors = ["Yaroslav Bolyukin "] license = "MIT" edition = "2018" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = [] --- 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 = ["Лач "] +authors = ["Yaroslav Bolyukin "] 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"] } --- 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 = ["Лач "] +authors = ["Yaroslav Bolyukin "] 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"] --- a/crates/jrsonnet-parser/Cargo.toml +++ b/crates/jrsonnet-parser/Cargo.toml @@ -2,7 +2,7 @@ name = "jrsonnet-parser" description = "jsonnet language parser and AST" version = "0.3.2" -authors = ["Лач "] +authors = ["Yaroslav Bolyukin "] license = "MIT" edition = "2018" --- 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 = ["Лач "] +authors = ["Yaroslav Bolyukin "] license = "MIT" edition = "2018" -- gitstuff