You've already forked native_api_1c
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:
@ -11,8 +11,10 @@
|
|||||||
// lib.rs
|
// lib.rs
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
|
|
||||||
use native_api_1c_core::ffi::connection::Connection;
|
use native_api_1c::{
|
||||||
use native_api_1c_macro::AddIn;
|
native_api_1c_core::{self, ffi::connection::Connection},
|
||||||
|
native_api_1c_macro::AddIn,
|
||||||
|
};
|
||||||
|
|
||||||
#[derive(AddIn)]
|
#[derive(AddIn)]
|
||||||
pub struct MyAddIn {
|
pub struct MyAddIn {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "native_api_1c"
|
name = "native_api_1c"
|
||||||
version = "0.9.2"
|
version = "0.9.3"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
repository = "https://github.com/Sebekerga/native_api_1c"
|
repository = "https://github.com/Sebekerga/native_api_1c"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
@ -9,7 +9,7 @@ readme = "../README.md"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
native_api_1c_core = { version = "=0.9.0", path = "../native_api_1c_core" }
|
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]
|
[features]
|
||||||
default = ["macro"]
|
default = ["macro"]
|
||||||
|
Submodule native_api_1c_macro updated: ecb8c41377...e84ce2cdc5
@ -8,7 +8,7 @@ crate-type = ["cdylib"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
utf16_lit = "2.0"
|
utf16_lit = "2.0"
|
||||||
native_api_1c_core = { path = "../native_api_1c_core" }
|
native_api_1c = "0.9.3"
|
||||||
native_api_1c_macro = { path = "../native_api_1c_macro" }
|
|
||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
|
|
||||||
use native_api_1c_core::ffi::connection::Connection;
|
use native_api_1c::native_api_1c_core::ffi::connection::Connection;
|
||||||
use native_api_1c_macro::AddIn;
|
use native_api_1c::native_api_1c_macro::AddIn;
|
||||||
|
|
||||||
#[derive(AddIn)]
|
#[derive(AddIn)]
|
||||||
pub struct MyAddIn {
|
pub struct MyAddIn {
|
||||||
|
Reference in New Issue
Block a user