Skip to content

Commit

Permalink
build: tighten tokio dep spec
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed May 18, 2024
1 parent 3ed2e45 commit 2fa5f2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ serde_urlencoded = "0.7"
slog = "2"
slog-async = "2"
slog-term = "2"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "time"] }
tokio = { version = "1.24.2", features = ["rt-multi-thread", "macros", "sync", "time"] }
toml = "0.8"

[build-dependencies]
Expand Down
1 change: 1 addition & 0 deletions src/models/repo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ use relative_path::RelativePath;
#[derive(Clone, Debug)]
pub struct Repository {
pub path: RepoPath,
#[allow(unused)] // TODO
pub description: String,
}

Expand Down

0 comments on commit 2fa5f2d

Please sign in to comment.