[package] name = "gitea_rust_sdk" description = "An unofficial rust-sdk for gitea" repository = "https://codeberg.org/schorsch/gitea_rust_sdk" documentation = "https://docs.rs/gitea_rust_sdk" categories = ["api-bindings"] keywords = ["gitea", "api", "sdk"] license = "LGPL-3.0-or-later" version = "0.1.3" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] reqwest = { version = "0.11.12", features = ["json"] } serde_json = "1.0" serde = { version = "1.0", features = ["derive"] } thiserror = "1" tokio = { version = "1.0.0", features = ["macros", "rt-multi-thread"] } regex = "1.6.0" anyhow = "1.0.65" lazy_static = "1.4.0" assert-str = "0.1.0"