diff --git a/agit-ai/Cargo.toml b/agit-ai/Cargo.toml index dd2c475..a1fa41e 100644 --- a/agit-ai/Cargo.toml +++ b/agit-ai/Cargo.toml @@ -7,6 +7,6 @@ license = "Apache-2.0" repository = "https://github.com/bit-torch/AdapterGit" [dependencies] -agit-core = { path = "../agit-core" } +agit-core = { version = "0.14.0", path = "../agit-core" } serde = { version = "1", features = ["derive"] } reqwest = { version = "0.12", features = ["json", "rustls-tls", "blocking"] } diff --git a/agit-cli/Cargo.toml b/agit-cli/Cargo.toml index ec5fcd9..249e341 100644 --- a/agit-cli/Cargo.toml +++ b/agit-cli/Cargo.toml @@ -11,8 +11,8 @@ name = "agit" path = "src/main.rs" [dependencies] -agit-core = { path = "../agit-core" } -agit-ai = { path = "../agit-ai", optional = true } +agit-core = { version = "0.14.0", path = "../agit-core" } +agit-ai = { version = "0.14.0", path = "../agit-ai", optional = true } clap = { version = "4", features = ["derive"] } serde = { version = "1", features = ["derive"] } serde_json = "1"