mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-05-24 10:59:27 +00:00
* Sort all Cargo.toml deps for less conflicts * Move relative path deps to workspace * Standardize workspace imports * Rename ‘client’ to ‘logos-chat’ * Cleanups
23 lines
388 B
TOML
23 lines
388 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]
|
|
# Workspace dependencies (sorted)
|
|
libchat = { workspace = true }
|
|
logos-chat = { workspace = true }
|
|
|
|
# External dependencies (sorted)
|
|
safer-ffi = "0.1.13"
|
|
|
|
[features]
|
|
headers = ["safer-ffi/headers"]
|