mirror of
https://github.com/soywod/himalaya.git
synced 2024-11-22 02:50:19 +00:00
fix pimalaya-tui package name
This commit is contained in:
parent
b92d7b4a08
commit
cce0baf81a
2 changed files with 6 additions and 2 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -3191,7 +3191,7 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "pimalaya-tui"
|
||||
version = "0.1.0"
|
||||
source = "git+https://github.com/pimalaya/tui#0b2403886edcc57491e56da86537541e9b126cbc"
|
||||
source = "git+https://github.com/pimalaya/tui#fba8c1284dbaaa4433c7cb6b242e68864d8d5b44"
|
||||
dependencies = [
|
||||
"clap",
|
||||
"color-eyre",
|
||||
|
|
|
@ -28,7 +28,11 @@ pub struct Config {
|
|||
pub account: Option<AccountsConfig>,
|
||||
}
|
||||
|
||||
impl TomlConfig<AccountConfig> for Config {}
|
||||
impl TomlConfig<AccountConfig> for Config {
|
||||
fn project_name() -> &'static str {
|
||||
env!("CARGO_PKG_NAME")
|
||||
}
|
||||
}
|
||||
|
||||
impl Config {
|
||||
/// Create and save a TOML configuration using the wizard.
|
||||
|
|
Loading…
Reference in a new issue