Skip to content

Commit

Permalink
Cleaning up dependencies (#6)
Browse files Browse the repository at this point in the history
* Leaning out dependency versions

* readme badges

* Removing backtrace feature on anyhow crate

Co-authored-by: Sean Lawlor <[email protected]>
  • Loading branch information
slawlor and slawlor authored Aug 31, 2022
1 parent 16436ea commit 03db0b9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@

# rustyrepl
The easy Rust Read-Evaluate-Print-Loop (REPL) utility crate

[<img alt="github" src="https://img.shields.io/badge/github-slawlor/repl-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">](https://github.com/slawlor/repl)
[<img alt="crates.io" src="https://img.shields.io/crates/v/rustyrepl.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](https://crates.io/crates/rustyrepl)
[<img alt="docs.rs" src="https://img.shields.io/badge/docs.rs-rustyrepl-66c2a5?style=for-the-badge&labelColor=555555&logo=docs.rs" height="20">](https://docs.rs/rustyrepl)
[<img alt="build status" src="https://img.shields.io/github/workflow/status/slawlor/repl/CI/main?style=for-the-badge" height="20">](https://github.com/slawlor/repl/actions?query=branch%3Amain)

## About

`rustyrepl` is a simple crate to facilitate creation of Read, Evaluate, Print, Loop utilities at the command-line.
Expand Down
2 changes: 1 addition & 1 deletion repl-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2018"
publish = false

[dependencies]
anyhow = { version = "1", features = ["backtrace"] }
anyhow = { version = "1" }
async-trait = "0.1"
clap = { version = "3", features = ["derive"] }
colored = "2"
Expand Down
8 changes: 4 additions & 4 deletions rustyrepl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustyrepl"
version = "0.1.2"
version = "0.1.3"
authors = ["Sean Lawlor <[email protected]>"]
description = "A Rust read, evaluate, print, loop (REPL) utility "
license = "MIT"
Expand All @@ -15,15 +15,15 @@ default = []

[dependencies]
# Required dependencies
anyhow = { version = "1", features = ["backtrace"] }
anyhow = { version = "1" }
clap = { version = "3", features = ["derive"] }
dirs = "4"
log = { version = "0.4.8", features = ["kv_unstable"] }
log = { version = "0.4", features = ["kv_unstable"] }
rustyline = "7"
thiserror = "1"

# Optional dependencies
async-trait = { version = "0.1", optional = true }

[dev-dependencies]
tokio = { version = "1.10", features = ["full"] }
tokio = { version = "1", features = ["full"] }

0 comments on commit 03db0b9

Please sign in to comment.