Skip to content

Commit

Permalink
Purge LMDB (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
casey authored Jul 18, 2022
1 parent c17915f commit 9e0899f
Show file tree
Hide file tree
Showing 11 changed files with 218 additions and 610 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,13 @@ jobs:
cargo update --locked --package ord
- name: Test
run: |
cargo test --all
cargo test --all --features redb
run: cargo test --all

- name: Clippy
run: |
cargo clippy --all --all-targets
cargo clippy --all --all-targets --features redb
run: cargo clippy --all --all-targets

- name: Format
run: |
cargo fmt --all -- --check
run: cargo fmt --all -- --check

- name: Check for Forbidden Words
if: ${{ matrix.os == 'ubuntu-latest' }}
Expand Down
75 changes: 12 additions & 63 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,9 @@ integer-sqrt = "0.1.5"
jsonrpc = "0.12.1"
lazy_static = "1.4.0"
log = "0.4.14"
ord-lmdb-zero = "0.4.5"
qrcode-generator = "4.1.6"
rayon = "1.5.1"
redb = { version = "0.0.5", optional = true }
redb = "0.2.0"
reqwest = { version = "0.11.10", features = ["blocking", "json"] }
secp256k1 = { version = "0.22.1", features = ["rand", "rand-std", "global-context"] }
serde = { version = "1.0.137", features = ["derive"] }
Expand Down
1 change: 0 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ test-deploy:
--exclude .git \
--exclude target \
--exclude .vagrant \
--exclude index.lmdb \
--exclude index.redb \
. root@192.168.56.4:ord
ssh root@192.168.56.4 'cd ord && ./deploy/setup'
Expand Down
Loading

0 comments on commit 9e0899f

Please sign in to comment.