[package] name = "nextcloud-client-api" description = "implementation of the socket API for the NextCloud client" authors = ["rudolf@rudis-infrastruktur.de"] version = "0.1.0" edition = "2021" repository = "https://gitlab.com/nextcloud-client-api/crate" readme = "README.md" license = "Apache-2.0" keywords = ["nextcloud", "cli", "api"] categories = ["api-bindings"] rust-version = "1.81" [dependencies] log = "0.4.22" thiserror = "1.0.63" [dev-dependencies] tempfile = "3.12.0" [lints.rust] unsafe_code = "forbid" [lints.clippy] all = { level = "deny", priority = -1 } cargo = { level = "deny", priority = -1 } complexity = { level = "deny", priority = -1 } pedantic = { level = "deny", priority = -1 } perf = { level = "deny", priority = -1 } style = { level = "deny", priority = -1 } suspicious = { level = "deny", priority = -1 } restriction = { level = "deny", priority = -1 } ## lints from the restriction group implicit_return = "allow" question_mark_used = "allow" missing_docs_in_private_items = "allow" error_impl_error = "allow" pub_with_shorthand = "allow" field_scoped_visibility_modifiers = "allow"