Move deltachat-repl into a separate crate

This commit is contained in:
link2xt
2023-02-11 12:19:07 +00:00
parent d1702e3081
commit 46143ac54f
9 changed files with 46 additions and 19 deletions

View File

@@ -31,7 +31,7 @@ jobs:
override: true
- name: Cache rust cargo artifacts
uses: swatinem/rust-cache@v2
- run: cargo clippy --workspace --tests --examples --benches --features repl -- -D warnings
- run: cargo clippy --workspace --tests --examples --benches -- -D warnings
docs:
name: Rust doc comments
@@ -89,7 +89,7 @@ jobs:
uses: swatinem/rust-cache@v2
- name: check
run: cargo check --all --bins --examples --tests --features repl --benches
run: cargo check --all --bins --examples --tests --benches
- name: tests
run: cargo test --all

View File

@@ -20,10 +20,10 @@ jobs:
override: true
- name: build
run: cargo build --example repl --features repl,vendored
run: cargo build --example repl --features vendored
- name: Upload binary
uses: actions/upload-artifact@v3
with:
name: repl.exe
path: 'target/debug/examples/repl.exe'
path: 'target/debug/deltachat-repl.exe'