Skip to content

Commit

Permalink
fixed cargo.toml and updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
haondt committed Sep 15, 2023
1 parent cb7441b commit b31175b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 7 deletions.
15 changes: 12 additions & 3 deletions README.md
Expand Up @@ -16,11 +16,20 @@ medea is a command-line developers toolbox, written in Rust. Similar to projects

## Installation

#### TODO: Installation script

You can grab the binary from the latest release here: https://github.com/haondt/medea/releases
#### Option 1: Download binary

Alternatively, you can clone the repository and build with Cargo.
You can grab the binary from the latest release: https://github.com/haondt/medea/releases

#### Option 2: Install with Cargo

```shell
cargo install haondt-medea
```

#### Option 3: Install manually

TODO: Installation script

## Usage

Expand Down
10 changes: 6 additions & 4 deletions medea/Cargo.toml
@@ -1,17 +1,19 @@
[package]
name = "medea"
version = "0.6.0"
name = "haondt-medea"
version = "0.6.1"
authors = ["Noah Burghardt <burghardtnoah@gmail.com>"]
license = "MIT"
description = "A command-line developers toolbox"
edition = "2021"
readme = "README.md"
readme = "../README.md"
homepage = "https://github.com/haondt/medea"
repository = "https://github.com/haondt/medea"
keywords = ["cli", "json", "tools", "base"]
categories = ["command-line-utilities"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "medea"
path = "src/main.rs"

[dependencies]
base16ct = { version = "0.2.0", features = ["alloc"] }
Expand Down

0 comments on commit b31175b

Please sign in to comment.