Skip to content

Commit

Permalink
Update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinleroy committed Feb 23, 2024
1 parent 75e31ed commit 6af318e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion crates/argus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "argus"
version = "0.0.1"
version = "0.1.0"
edition = "2021"

[features]
Expand Down
13 changes: 8 additions & 5 deletions crates/argus_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
[package]
name = "argus_cli"
version = "0.0.1"
version = "0.1.0"
edition = "2021"
authors = ["Gavin Gray <[email protected]>"]
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"
Expand Down

0 comments on commit 6af318e

Please sign in to comment.