21 lines
468 B
TOML
21 lines
468 B
TOML
[package]
|
|
name = "gotcha-app"
|
|
version = "0.1.0"
|
|
description = "Lightweight Slint client for Gitea on iOS"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
name = "gotcha_core"
|
|
crate-type = ["lib", "staticlib"]
|
|
|
|
[dependencies]
|
|
gotcha_gitea = { path = "../gitea" }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
security-framework = "3"
|
|
thiserror = "2"
|
|
tokio.workspace = true
|
|
uniffi = { version = "0.32", features = ["tokio"] }
|