4 Commits

Author SHA1 Message Date
15298f1f96 feat: update 2025-05-25 16:14:36 +02:00
b86fec2a58 fix(deps): update rust crate serde to v1.0.218
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2025-02-21 01:30:01 +00:00
687792706b fix(deps): update rust crate serde to v1.0.217
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2024-12-28 01:27:22 +00:00
1c29770ce2 fix(deps): update rust crate serde to v1.0.216
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2024-12-11 05:23:24 +00:00
4 changed files with 854 additions and 561 deletions

1409
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.19.8"
rlua-searcher = "0.1.0"
dotenv = { version = "0.15.0", features = ["clap"] }
dotenvy = { version = "0.15.7" }
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" {
if entry.file_name() == ".git" || entry.file_name() == ".jj" {
continue;
} else {
anyhow::bail!("Directory {} is not empty", &path);

View File

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