[package]
edition = "2024"
name = "simploxide-ffi-core"
version = "0.1.1"
authors = ["a1akris <alkrivitskiy@pm.me>"]
build = false
exclude = [
"sxcrt",
"test_db",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SimpleX-Chat raw FFI client"
documentation = "https://docs.rs/simploxide-ffi-core"
readme = "README.md"
keywords = [
"simplex-chat",
"ffi",
"client",
]
categories = [
"api-bindings",
"asynchronous",
"network-programming",
]
license = "AGPL-3.0"
repository = "https://github.com/a1akris/simploxide"
[lib]
name = "simploxide_ffi_core"
path = "src/lib.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[dependencies.serde]
version = "1"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1"
[dependencies.simploxide-core]
version = "0.4.0"
[dependencies.simploxide-sxcrt-sys]
version = "0.1.1"
[dependencies.slab]
version = "0.4"
[dependencies.tokio]
version = "1"
features = ["sync"]
[dev-dependencies.tokio]
version = "1"
features = [
"sync",
"rt-multi-thread",
"time",
"macros",
]