| Crates.io | addin1c |
| lib.rs | addin1c |
| version | 0.7.0 |
| created_at | 2023-12-14 18:29:42.389106+00 |
| updated_at | 2025-05-17 21:25:00.820144+00 |
| description | Helper for creating 1C:Enterpirse 8 add-ins with Native API technology |
| homepage | https://github.com/medigor/addin1c |
| repository | https://github.com/medigor/addin1c |
| max_upload_size | |
| id | 1069845 |
| size | 57,013 |
Helper for creating 1C:Enterprise 8 add-ins with Native API technology
References:
See example:
Create a .vscode/launch.json file:
{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug 1ะก",
"program": "path/to/1cv8c",
"args": [
"/IBName",
"Test1"
],
"cwd": "${workspaceFolder}",
"preLaunchTask": "rust: cargo build",
"env": {"DISPLAY": ":1"}, // only for Linux
}
]
}