Compare commits

1 Commits

Author SHA1 Message Date
510c719a91 fix(deps): update all dependencies
Some checks failed
renovate/artifacts Artifact file update failure
continuous-integration/drone/pr Build is failing
continuous-integration/drone/push Build is failing
2025-02-10 05:27:18 +00:00
4 changed files with 559 additions and 852 deletions

1405
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -39,7 +39,7 @@ tempfile = { version = "3.10.0" }
serde_json = "1.0.113"
rlua = "0.20.0"
rlua-searcher = "0.1.0"
dotenvy = { version = "0.15.7" }
dotenv = { version = "0.15.0", features = ["clap"] }
blake3 = "1.5.0"
tokio = { version = "1.36.0", features = ["full"] }
futures-util = "0.3.30"

View File

@@ -129,7 +129,7 @@ pub fn execute_init(exe_submatch: &ArgMatches, _cli: CuddleCli) -> anyhow::Resul
if dir.count() != 0 {
for entry in read_dir(&path)? {
let entry = entry?;
if entry.file_name() == ".git" || entry.file_name() == ".jj" {
if entry.file_name() == ".git" {
continue;
} else {
anyhow::bail!("Directory {} is not empty", &path);

View File

@@ -11,7 +11,7 @@ mod util;
fn main() -> anyhow::Result<()> {
init_logging()?;
let _ = dotenvy::dotenv();
let _ = dotenv::dotenv();
let config = CuddleConfig::from_env()?;