From 843c134421a48d2e405cdf948042ecb08f19acba Mon Sep 17 00:00:00 2001 From: Pascal Hertleif Date: Thu, 18 Mar 2021 21:41:21 +0100 Subject: [PATCH] Add Cargo metadata [ci skip] --- Cargo.toml | 2 ++ dbc-codegen-cli/Cargo.toml | 13 +++++++++++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e64cc43..b90189f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,6 +10,8 @@ edition = "2018" description = "CAN DBC code-gen for embedded Rust" license = "MIT OR Apache-2.0" readme = "README.md" +repository = "https://github.com/technocreatives/dbc-codegen" +homepage = "https://github.com/technocreatives/dbc-codegen" [dependencies] can-dbc = "3.0.2" diff --git a/dbc-codegen-cli/Cargo.toml b/dbc-codegen-cli/Cargo.toml index c8f8ac2..cbff6f2 100644 --- a/dbc-codegen-cli/Cargo.toml +++ b/dbc-codegen-cli/Cargo.toml @@ -1,14 +1,23 @@ [package] name = "dbc-codegen-cli" version = "0.1.0" -authors = ["Pascal Hertleif "] +authors = [ + "Pascal Hertleif ", + "Marcel Buesing ", + "Andres Vahter ", +] edition = "2018" +description = "CLI for CAN DBC codegen" +license = "MIT OR Apache-2.0" +readme = "../README.md" +repository = "https://github.com/technocreatives/dbc-codegen" +homepage = "https://github.com/technocreatives/dbc-codegen" [dependencies] heck = "0.3.1" structopt = "0.3.20" exitcode = "1.1.2" -dbc-codegen = { path = ".." } +dbc-codegen = { version = "0.1", path = ".." } [[bin]] name = "dbc-codegen"