diff --git a/Cargo.toml b/Cargo.toml index 8c2e05f..c1cfc70 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,3 +3,5 @@ members = ["native_api_1c", "native_api_1c_core", "native_api_1c_macro"] [patch.crates-io] native_api_1c = { path = "native_api_1c" } +native_api_1c_core = { path = "native_api_1c_core" } +native_api_1c_macro = { path = "native_api_1c_macro" } diff --git a/native_api_1c/Cargo.toml b/native_api_1c/Cargo.toml index 0136149..c9db739 100644 --- a/native_api_1c/Cargo.toml +++ b/native_api_1c/Cargo.toml @@ -8,8 +8,8 @@ description = "Main library for Native API 1C" readme = "../README.md" [dependencies] -native_api_1c_core = { version = "=0.9.3", path = "../native_api_1c_core" } -native_api_1c_macro = { version = "=0.10.4", path = "../native_api_1c_macro" } +native_api_1c_core = { path = "../native_api_1c_core" } +native_api_1c_macro = { path = "../native_api_1c_macro" } [features] default = ["macro"] diff --git a/native_api_1c_core/Cargo.toml b/native_api_1c_core/Cargo.toml index 6edcf60..1e21ccb 100644 --- a/native_api_1c_core/Cargo.toml +++ b/native_api_1c_core/Cargo.toml @@ -2,7 +2,7 @@ name = "native_api_1c_core" version = "0.9.3" edition = "2021" -repository = "https://github.com/Sebekerga/native_api_1c_core" +repository = "https://github.com/Sebekerga/native_api_1c" license = "MIT" description = "Core library for Native API 1C" diff --git a/native_api_1c_macro/Cargo.toml b/native_api_1c_macro/Cargo.toml index 92ef662..6dde371 100644 --- a/native_api_1c_macro/Cargo.toml +++ b/native_api_1c_macro/Cargo.toml @@ -2,7 +2,7 @@ name = "native_api_1c_macro" version = "0.10.4" edition = "2021" -repository = "https://github.com/Sebekerga/native_api_1c_macro" +repository = "https://github.com/Sebekerga/native_api_1c" license = "MIT" description = "Macro library for Native API 1C" @@ -27,7 +27,7 @@ quote = "1.0.32" proc-macro2 = "1.0.66" [dev-dependencies] -native_api_1c = { git = "https://github.com/Sebekerga/native_api_1c" } +native_api_1c = { path = "../native_api_1c" } trybuild = { version = "1.0.49", features = ["diff"] } utf16_lit = "2.0" chrono = "0.4.26"