Rename hooked-library to hooked-config.
parent
0743a982d1
commit
4f28ced1b1
@ -1,5 +1,5 @@
|
||||
[workspace]
|
||||
members = [
|
||||
"hooked-cli",
|
||||
"hooked-library"
|
||||
"hooked-config"
|
||||
]
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "hooked-library"
|
||||
description = "Git hooks manager."
|
||||
name = "hooked-config"
|
||||
description = "Configuration for Hooked."
|
||||
repository = "https://git.bauke.xyz/Holllo/hooked"
|
||||
license = "AGPL-3.0-or-later"
|
||||
version = "0.1.0"
|
@ -1,6 +1,6 @@
|
||||
use std::path::PathBuf;
|
||||
|
||||
use {color_eyre::Result, hooked_library::Config};
|
||||
use {color_eyre::Result, hooked_config::Config};
|
||||
|
||||
use {insta::assert_debug_snapshot, test_case::test_case};
|
||||
|
@ -1,5 +1,5 @@
|
||||
use {
|
||||
hooked_library::{Config, ExitAction, PreCommit, Task},
|
||||
hooked_config::{Config, ExitAction, PreCommit, Task},
|
||||
toml::to_string_pretty,
|
||||
};
|
||||
|
Loading…
Reference in New Issue