initial commit

This commit is contained in:
2026-02-05 14:50:29 +01:00
commit c1d60af439
15 changed files with 3155 additions and 0 deletions

22
Cargo.toml Normal file
View File

@@ -0,0 +1,22 @@
[package]
name = "jecna_supl_client"
version = "0.1.0"
edition = "2024"
[dependencies]
chrono = { version = "0.4.43", features = ["serde"] }
futures = "0.3.31"
once_cell = "1.21.3"
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0.18"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
tracing = "0.1.44"
tracing-subscriber = "0.3.22"
android_logger = "0.14"
log = "0.4"
uniffi = { version = "0.27", features = ["cli"] }
[lib]
crate-type = ["cdylib"]