[package]
edition = "2021"
name = "syncular-ffi"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Syncular v2 Rust client core packaged as a C-ABI native library — the shipping native runtime for iOS/Android/JVM/desktop over the shared command surface"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/syncular/syncular"
[features]
crdt-yjs = ["syncular-command/crdt-yjs"]
default = []
e2ee = ["syncular-command/e2ee"]
native-transport = [
"dep:ureq",
"dep:tungstenite",
]
[lib]
name = "syncular"
crate-type = [
"cdylib",
"staticlib",
"rlib",
]
path = "src/lib.rs"
[dependencies.serde_json]
version = "1"
[dependencies.syncular-client]
version = "0.2.1"
[dependencies.syncular-command]
version = "0.2.1"
[dependencies.tungstenite]
version = "0.24"
features = ["rustls-tls-webpki-roots"]
optional = true
[dependencies.ureq]
version = "2"
optional = true
[dev-dependencies.tungstenite]
version = "0.24"
features = ["rustls-tls-webpki-roots"]