-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 877 Bytes
/
Cargo.toml
File metadata and controls
27 lines (25 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "xposedornot"
version = "1.0.1"
edition = "2021"
rust-version = "1.70"
description = "Rust client library for the XposedOrNot data breach API"
license = "MIT"
authors = ["XposedOrNot <deva@xposedornot.com>"]
repository = "https://github.com/XposedOrNot/XposedOrNot-Rust"
homepage = "https://xposedornot.com"
documentation = "https://docs.rs/xposedornot"
keywords = ["xposedornot", "security", "breach", "data-breach", "api"]
categories = ["api-bindings", "authentication"]
exclude = ["tests/"]
[dependencies]
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
tokio = { version = "1", features = ["sync", "time"] }
sha3 = "0.10"
percent-encoding = "2"
[dev-dependencies]
tokio = { version = "1", features = ["full"] }
wiremock = "0.5"