You've already forked native_api_1c
mirror of
https://github.com/Sebekerga/native_api_1c.git
synced 2025-07-07 00:35:53 +02:00
fix in macro subcrate
This commit is contained in:
@ -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 {
|
||||
|
@ -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"]
|
||||
|
Submodule native_api_1c_macro updated: ecb8c41377...e84ce2cdc5
@ -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]
|
||||
|
@ -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 {
|
||||
|
Reference in New Issue
Block a user