Compare commits
2 Commits
38153a96d5
...
c02f812147
Author | SHA1 | Date | |
---|---|---|---|
c02f812147 | |||
15298f1f96 |
2165
Cargo.lock
generated
2165
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -6,6 +6,6 @@ edition = "2021"
|
|||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
dagger-sdk = "0.9.8"
|
dagger-sdk = "0.18.0"
|
||||||
eyre = "0.6.12"
|
eyre = "0.6.12"
|
||||||
tokio = { version = "1.36.0", features = ["full"] }
|
tokio = { version = "1.36.0", features = ["full"] }
|
||||||
|
@ -39,7 +39,7 @@ tempfile = { version = "3.10.0" }
|
|||||||
serde_json = "1.0.113"
|
serde_json = "1.0.113"
|
||||||
rlua = "0.20.0"
|
rlua = "0.20.0"
|
||||||
rlua-searcher = "0.1.0"
|
rlua-searcher = "0.1.0"
|
||||||
dotenv = { version = "0.15.0", features = ["clap"] }
|
dotenvy = { version = "0.15.7" }
|
||||||
blake3 = "1.5.0"
|
blake3 = "1.5.0"
|
||||||
tokio = { version = "1.36.0", features = ["full"] }
|
tokio = { version = "1.36.0", features = ["full"] }
|
||||||
futures-util = "0.3.30"
|
futures-util = "0.3.30"
|
||||||
|
@ -129,7 +129,7 @@ pub fn execute_init(exe_submatch: &ArgMatches, _cli: CuddleCli) -> anyhow::Resul
|
|||||||
if dir.count() != 0 {
|
if dir.count() != 0 {
|
||||||
for entry in read_dir(&path)? {
|
for entry in read_dir(&path)? {
|
||||||
let entry = entry?;
|
let entry = entry?;
|
||||||
if entry.file_name() == ".git" {
|
if entry.file_name() == ".git" || entry.file_name() == ".jj" {
|
||||||
continue;
|
continue;
|
||||||
} else {
|
} else {
|
||||||
anyhow::bail!("Directory {} is not empty", &path);
|
anyhow::bail!("Directory {} is not empty", &path);
|
||||||
|
@ -11,7 +11,7 @@ mod util;
|
|||||||
|
|
||||||
fn main() -> anyhow::Result<()> {
|
fn main() -> anyhow::Result<()> {
|
||||||
init_logging()?;
|
init_logging()?;
|
||||||
let _ = dotenv::dotenv();
|
let _ = dotenvy::dotenv();
|
||||||
|
|
||||||
let config = CuddleConfig::from_env()?;
|
let config = CuddleConfig::from_env()?;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user