-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from ink0rr/dev
rgl v0.10.0
- Loading branch information
Showing
32 changed files
with
675 additions
and
757 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
[package] | ||
name = "rgl" | ||
version = "0.9.0" | ||
version = "0.10.0" | ||
edition = "2021" | ||
|
||
[[bin]] | ||
name = "rgl" | ||
|
||
[dependencies] | ||
anyhow = "1.0.86" | ||
clap = { version = "4.5.6", features = ["cargo", "derive"] } | ||
clap = { version = "4.5.8", features = ["cargo", "derive"] } | ||
dialoguer = "0.11.0" | ||
dunce = "1.0.4" | ||
enum_dispatch = "0.3.13" | ||
fslock = "0.2.1" | ||
indexmap = { version = "2.2.6", features = ["serde"] } | ||
md5 = "0.7.0" | ||
notify = "6.1.1" | ||
notify-debouncer-mini = "0.4.1" | ||
once_cell = "1.19.0" | ||
paris = { version = "1.5.15", features = ["macros"] } | ||
rayon = "1.10.0" | ||
semver = "1.0.23" | ||
serde = { version = "1.0.203", features = ["derive"] } | ||
serde_json = "1.0.117" | ||
serde_json = "1.0.120" | ||
tempfile = "3.10.1" | ||
ureq = "2.9.7" | ||
uuid = { version = "1.8.0", features = ["v4"] } | ||
uuid = { version = "1.9.1", features = ["v4"] } | ||
walkdir = "2.5.0" | ||
zip = "2.1.3" | ||
zip = "0.6.6" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
use crate::rgl::{get_cache_dir, get_global_filters_path, get_user_config_path}; | ||
use crate::Command; | ||
use anyhow::Result; | ||
use clap::{crate_version, Args}; | ||
|
||
#[derive(Args)] | ||
pub struct Info {} | ||
impl Command for Info { | ||
fn dispatch(&self) -> Result<()> { | ||
println!("rgl version: {}", crate_version!()); | ||
println!("RGL_DIR location: {}", get_cache_dir()?.display()); | ||
println!( | ||
"User config location: {}", | ||
get_user_config_path()?.display() | ||
); | ||
println!( | ||
"Global filters location: {}", | ||
get_global_filters_path()?.display() | ||
); | ||
Ok(()) | ||
} | ||
fn error_context(&self) -> String { | ||
"Error getting rgl info".to_owned() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.