Skip to content

Commit 0bb48ba

Browse files
committed
bumped dependy versions
1 parent 1d5316c commit 0bb48ba

File tree

4 files changed

+5
-11
lines changed

4 files changed

+5
-11
lines changed

.github/workflows/update_stats.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: update loc every 6 hours
1+
name: update loc & downloads every 1 hour
22
on:
33
schedule:
44
# every 1 hour
@@ -9,9 +9,6 @@ jobs:
99
update_loc:
1010
runs-on: ubuntu-latest
1111
steps:
12-
# - uses: actions/checkout@v3
13-
# with:
14-
# ref: stats
1512
- name: setup rust
1613
uses: dtolnay/rust-toolchain@stable
1714
- name: install tokei
@@ -32,9 +29,6 @@ jobs:
3229
update_downloads:
3330
runs-on: ubuntu-latest
3431
steps:
35-
# - uses: actions/checkout@v3
36-
# with:
37-
# ref: stats
3832
- name: install python
3933
uses: actions/setup-python@v2
4034
- name: install dependencies

cargo-function-history/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ git_function_history = { path = "../git-function-history-lib", version = "0.6.0"
1515
lazy_static = "1.3.0"
1616
tui = { version = "0.19", features = ["crossterm"], default-features = false }
1717
crossterm = "0.25.0"
18-
tokio = { version = "1", features = ["full"] }
18+
tokio = { version = "1.21.2", features = ["full"] }
1919
eyre = "0.6"
2020
dirs = "4.0.0"
2121
simple_file_logger = "0.2.0"

cargo-function-history/src/app/ui.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use std::{collections::BTreeMap, time::Duration};
1+
use std::{collections::BTreeMap};
22

33
use function_history_backend_thread::types::Status;
44
use tui::layout::{Alignment, Constraint, Direction, Layout, Rect};

git-function-history-lib/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ description = "show function history from git"
1010
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1111

1212
[dependencies]
13-
chrono = "0.4"
14-
ra_ap_syntax = "0.0.129"
13+
chrono = "0.4.22"
14+
ra_ap_syntax = "0.0.131"
1515
rayon = "1.5.3"

0 commit comments

Comments
 (0)