1
0
mirror of https://github.com/Sebekerga/native_api_1c.git synced 2025-07-05 00:29:00 +02:00

fix in macro subcrate

This commit is contained in:
Kozlov Maxim
2023-08-10 14:37:42 +06:00
parent cd64fbf698
commit 6af9615ae7
5 changed files with 11 additions and 9 deletions

View File

@ -11,8 +11,10 @@
// lib.rs
use std::sync::Arc;
use native_api_1c_core::ffi::connection::Connection;
use native_api_1c_macro::AddIn;
use native_api_1c::{
native_api_1c_core::{self, ffi::connection::Connection},
native_api_1c_macro::AddIn,
};
#[derive(AddIn)]
pub struct MyAddIn {

View File

@ -1,6 +1,6 @@
[package]
name = "native_api_1c"
version = "0.9.2"
version = "0.9.3"
edition = "2021"
repository = "https://github.com/Sebekerga/native_api_1c"
license = "MIT"
@ -9,7 +9,7 @@ readme = "../README.md"
[dependencies]
native_api_1c_core = { version = "=0.9.0", path = "../native_api_1c_core" }
native_api_1c_macro = { version = "=0.9.0", path = "../native_api_1c_macro" }
native_api_1c_macro = { version = "=0.9.1", path = "../native_api_1c_macro" }
[features]
default = ["macro"]

View File

@ -8,7 +8,7 @@ crate-type = ["cdylib"]
[dependencies]
utf16_lit = "2.0"
native_api_1c_core = { path = "../native_api_1c_core" }
native_api_1c_macro = { path = "../native_api_1c_macro" }
native_api_1c = "0.9.3"
[workspace]

View File

@ -1,7 +1,7 @@
use std::sync::Arc;
use native_api_1c_core::ffi::connection::Connection;
use native_api_1c_macro::AddIn;
use native_api_1c::native_api_1c_core::ffi::connection::Connection;
use native_api_1c::native_api_1c_macro::AddIn;
#[derive(AddIn)]
pub struct MyAddIn {