Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
211 changes: 207 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,7 @@ rstest = "0.25.0"
mockall = "0.13.1"
pretty_assertions = "1.4.1"
tempfile = "3.20.0"
serde = { version = "1.0", features = ["derive"] }
up_finder = "0.0.4"
dirs = "6.0.0"
editor-command = "1.0.0"
1 change: 1 addition & 0 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ plugins = { path = "../plugins" }
clap = "4.5.41"
thiserror.workspace = true
miette = { version = "7.6.0", features = ["fancy"] }
editor-command.workspace = true

[dev-dependencies]
rstest.workspace = true
Expand Down
2 changes: 2 additions & 0 deletions cli/src/commands.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
pub mod config;
pub mod init;
pub mod meva_command;

pub use config::ConfigCommand;
pub use init::InitCommand;
pub use meva_command::MevaCommand;
Loading