-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 886 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (30 loc) · 886 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
28
29
30
31
32
33
34
[package]
name = "smile_id"
version = "0.1.0"
edition = "2024"
authors = ["Nutcase <mauricee423@gmail.com>"]
description = "Rust client for Smile ID's identity verification services across Africa"
license = "MIT"
repository = "https://github.com/nutcas3/smile-id-rust"
readme = "README.md"
keywords = ["identity", "verification", "kyc", "africa", "smile-id"]
categories = ["api-bindings", "authentication"]
[dependencies]
reqwest = { version = "0.13.2", features = ["json", "blocking"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
thiserror = "2.0.18"
hmac = "0.13.0"
sha2 = "0.11.0"
base64 = "0.22.1"
chrono = "0.4.44"
async-trait = "0.1.89"
tokio = { version = "1.52.1", features = ["full"], optional = true }
url = "2.5.8"
[features]
default = ["async"]
async = ["tokio"]
blocking = []
[dev-dependencies]
tokio-test = "0.4.5"
mockito = "1.7.2"