CrypteCipher/bindings/Cargo.toml
MoCipher 267d8f6edd
Some checks failed
CI / build (macos-latest, stable) (push) Has been cancelled
CI / build (ubuntu-latest, stable) (push) Has been cancelled
CI / build (windows-latest, stable) (push) Has been cancelled
Initial CrypteCipher scaffold and features
2026-02-12 00:02:00 +01:00

16 lines
374 B
TOML

[package]
name = "cryptec_bindings"
version = "0.1.0"
edition = "2021"
[lib]
name = "cryptec_bindings"
crate-type = ["cdylib"]
[dependencies]
# napi-rs provides Node.js native ABI bindings (useful for Electron desktop)
napi = { version = "2", features = ["compat-mode"] }
napi-derive = "2"
# Depend on the core crate (path dependency)
cryptec_core = { path = "../core" }