1
0
mirror of https://github.com/Sebekerga/native_api_1c.git synced 2025-07-17 01:12:24 +02:00

fixed error in workspace definition

This commit is contained in:
Kozlov Maxim
2023-11-06 00:12:18 +06:00
parent 748e988232
commit faea246425
2 changed files with 6 additions and 4 deletions

View File

@ -1,8 +1,12 @@
[workspace]
members = ["native_api_1c", "native_api_1c_core", "native_api_1c_macro"]
members = [
"native_api_1c",
"native_api_1c_core",
"native_api_1c_macro",
"sample_addin_rs",
]
[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" }
sample_addin_rs = { path = "sample_addin_rs" }

View File

@ -10,5 +10,3 @@ crate-type = ["cdylib"]
utf16_lit = "2.0"
native_api_1c = { path = "../native_api_1c" }
chrono = "0.4.26"
[workspace]