[package] name = "aur-rs" version = "0.1.1" edition = "2021" description = "Library for interacting with the Arch User Repository's RPC interface" documentation = "https://docs.rs/aur-rs" readme = "README.md" license = "MIT" repository = "https://git.sr.ht/~xulfer/aur-rs" keywords = ["aur", "archlinux", "package", "rpc"] categories = ["api-bindings"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] reqwest = { version = "0.11", features = ["json"] } tokio = { version = "1", features = [ "full" ]} serde = { version = "1", features = [ "derive" ] } serde_json = { version = "1" } url = { version = "2" } # The following is for possible future use # alpm = { version = "2.2" } [dev-dependencies] tokio-test = { version = "0.4" } httpmock = { version = "0.6" }