From 6af318e43036180aa6ec507792b630e37350d2ea Mon Sep 17 00:00:00 2001 From: gavinleroy Date: Fri, 23 Feb 2024 18:58:08 +0100 Subject: [PATCH] Update versions --- crates/argus/Cargo.toml | 2 +- crates/argus_cli/Cargo.toml | 13 ++++++++----- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/crates/argus/Cargo.toml b/crates/argus/Cargo.toml index ba743bd..9e2094f 100644 --- a/crates/argus/Cargo.toml +++ b/crates/argus/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "argus" -version = "0.0.1" +version = "0.1.0" edition = "2021" [features] diff --git a/crates/argus_cli/Cargo.toml b/crates/argus_cli/Cargo.toml index 6e86c66..6e9685a 100644 --- a/crates/argus_cli/Cargo.toml +++ b/crates/argus_cli/Cargo.toml @@ -1,20 +1,23 @@ [package] name = "argus_cli" -version = "0.0.1" +version = "0.1.0" edition = "2021" +authors = ["Gavin Gray "] +repository = "https://github.com/cognitive-engineering-lab/argus" +description = "Trait debugger backend for IDE interactions." +license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -argus = { path = "../argus" } - +argus = { version = "0.1.0", path = "../argus" } rustc_plugin = "=0.9.0-nightly-2024-01-24" rustc_utils = { version = "=0.9.0-nightly-2024-01-24", features = ["serde"] } # For binaries log = "0.4" -env_logger = {version = "0.9", default-features = false} -clap = {version = "3.1", default-features = false, features = ["std", "derive"]} +env_logger = { version = "0.9", default-features = false } +clap = { version = "3.1", default-features = false, features = ["std", "derive"] } serde = { version = "1.0.192", features = ["derive"] } serde_json = "1" anyhow = "1.0.75"