Skip to content

Commit

Permalink
Merge be1aae0 into 0dc7023
Browse files Browse the repository at this point in the history
  • Loading branch information
bingryan committed Dec 9, 2021
2 parents 0dc7023 + be1aae0 commit ec0f34b
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/target
.idea
.local
dev.db
phodal.dev
examples/blog/*
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ quake_core = { path = "quake_core", version = "0.1.0" }
quake_tui = { path = "quake_tui", version = "0.1.0" }

# cli parser
clap = "3.0.0-beta.5"
clap = { version = "3.0.0-beta.5", features = ["derive"] }
config = { version = "0.11", features = ["yaml"] }

regex = "1.0"
Expand Down Expand Up @@ -62,7 +62,7 @@ async-std = "1.10.0"
tracing = "0.1"
tracing-subscriber = "0.2"

syntect = { version = "4.2", default-features = false, features = ["default-fancy"]}
syntect = { version = "4.2", default-features = false, features = ["default-fancy"] }

[features]
webserver = []
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,13 @@ quake tui

### CLI

0. install

```bash
git clone https://github.com/phodal/quake && cd quake
cargo install --path . # or: just install
```

1. add entry by type

```bash
Expand Down
3 changes: 3 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ setup:
rustup component add llvm-tools-preview --toolchain nightly
cargo install cargo-llvm-cov

install:
cargo install --path .

build:
cargo build --all

Expand Down
5 changes: 5 additions & 0 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[toolchain]
channel = "stable-2021-10-21"
components = ["rustfmt", "clippy", "llvm-tools-preview"]
targets = ["wasm32-unknown-unknown"]
profile = "minimal"

0 comments on commit ec0f34b

Please sign in to comment.