Skip to content

Commit

Permalink
Initial import
Browse files Browse the repository at this point in the history
  • Loading branch information
vorot93 committed Nov 1, 2021
0 parents commit 73d6748
Show file tree
Hide file tree
Showing 5 changed files with 808 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
on:
pull_request:
push:
branches:
- master

name: CI

jobs:
ci:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: rustfmt, clippy
- run: cargo fmt --all --check -- --config=imports_granularity=Crate
- run: cargo install cargo-hack
- run: cargo hack clippy --workspace --each-feature -- -D warnings
- run: cargo hack test --workspace --each-feature
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/target
Cargo.lock
19 changes: 19 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[package]
name = "mdbx-tui"
version = "0.1.0"
authors = ["Artem Vorotnikov <[email protected]>"]
edition = "2021"
description = "TUI for MDBX storage engine"
license = "AGPL-3.0-only"

[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
cursive = { version = "0.20", default-features = false, features = [
"termion-backend",
] }
expanded-pathbuf = "0.1"
hex = "0.4"
libmdbx = "0.3"
once_cell = "1"
termion = "2"
Loading

0 comments on commit 73d6748

Please sign in to comment.