23 lines
600 B
TOML
23 lines
600 B
TOML
[package]
|
|
name = "tauth-sdk"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "MIT"
|
|
|
|
[lib]
|
|
name = "tauth_sdk"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
base64 = "0.22"
|
|
mtp = { git = "https://git.methanium.net/methanium/mtp.git", features = ["client", "crypto"] }
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
sha2 = "0.10"
|
|
thiserror = "2"
|
|
tokio = { version = "1", features = ["rt", "time"] }
|
|
url = "2"
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread", "time"] }
|