26 lines
709 B
TOML
26 lines
709 B
TOML
[package]
|
|
name = "tele-ios-ffi"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Your Name <your.email@example.com>"]
|
|
description = "UniFFI bridge for the iOS Telegram client"
|
|
license = "MIT"
|
|
repository = "https://github.com/your-username/tele-tui"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "staticlib", "rlib"]
|
|
|
|
[features]
|
|
default = ["core-session"]
|
|
core-session = ["dep:tele-core"]
|
|
standalone-fake = []
|
|
|
|
[dependencies]
|
|
tele-core = { path = "../tele-core", features = ["test-support"], optional = true }
|
|
tokio = { version = "1", features = ["rt-multi-thread"] }
|
|
thiserror = "1.0"
|
|
uniffi = { version = "0.31.1", features = ["tokio"] }
|
|
|
|
[dev-dependencies]
|
|
tele-core = { path = "../tele-core", features = ["test-support"] }
|