Files
hakorune/plugins/nyash-file/Cargo.toml
Moe Charm 226618de05 feat(9.75f-1): Implement FileBox dynamic plugin foundation
- Add workspace configuration to support plugins
- Create nyash-file plugin with C ABI
- Implement nyash_file_open/read/write/exists/free functions
- Add libloading dependency with dynamic-file feature
- Successfully build libnyash_file.so (1.55s build time)

Next: Implement plugin loader in interpreter
2025-08-17 04:13:42 +09:00

18 lines
329 B
TOML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[package]
name = "nyash-file"
version = "0.1.0"
edition = "2021"
[lib]
name = "nyash_file"
crate-type = ["cdylib"] # 動的ライブラリとして生成
[dependencies]
# C FFI用
libc = "0.2"
# Nyashの基本的な型定義が必要になるかも後で検討
# nyash-core = { path = "../.." }
[features]
default = []