mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-04-02 01:23:11 +00:00
20 lines
319 B
TOML
20 lines
319 B
TOML
|
|
[package]
|
||
|
|
name = "client-ffi"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2024"
|
||
|
|
|
||
|
|
[lib]
|
||
|
|
crate-type = ["staticlib", "rlib"]
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "generate-headers"
|
||
|
|
required-features = ["headers"]
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
safer-ffi = "0.1.13"
|
||
|
|
client = { path = "../client" }
|
||
|
|
libchat = { workspace = true }
|
||
|
|
|
||
|
|
[features]
|
||
|
|
headers = ["safer-ffi/headers"]
|