Skip to content

Commit

Permalink
♻️ update package name
Browse files Browse the repository at this point in the history
  • Loading branch information
uzimaru0000 committed Sep 7, 2021
1 parent 495f30e commit 8486d8c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- uses: actions-rs/[email protected]
with:
command: build
args: --release --target=${{ matrix.target }}
args: --release --target=${{ matrix.target }} --bin tv
use-cross: true
- run: |
zip --junk-paths tv-${{ matrix.target }} target/${{ matrix.target }}/release/tv{,.exe}
Expand Down
4 changes: 2 additions & 2 deletions src/application.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ use crate::input;
use anyhow::Result;
use clap::{App, Arg};
use tokio::io::BufReader;
use tv::data::Data;
use tv::table::{cell::Align, style::Style, Table};
use tableview::data::Data;
use tableview::table::{cell::Align, style::Style, Table};

pub struct Application<'a, 'b> {
app: App<'a, 'b>,
Expand Down

0 comments on commit 8486d8c

Please sign in to comment.