-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
43 lines (40 loc) · 879 Bytes
/
Cargo.toml
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
35
36
37
38
39
40
41
42
43
[package]
name = "paystack-rs"
version = "0.2.2"
description = "Paystack API Wrapper"
authors = ["Oghenemarho Orukele <[email protected]>"]
edition = "2021"
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENCE"
]
homepage = "https://github.com/morukele/paystack-rs"
repository = "https://github.com/morukele/paystack-rs"
documentation = "https://docs.rs/paystack-rs"
keywords = [
"payment",
"paystack",
"api",
"finance",
"async"
]
readme = "README.md"
categories = ["api-bindings", "finance"]
license = "MIT"
[lib]
name = "paystack"
[dependencies]
thiserror = "1"
serde_json = "1"
reqwest = { version = "0.12.5", features = ["json"] }
tokio = { version = "1", features = ["full"] }
serde = {version ="1", features = ["derive"]}
log = "0.4.20"
async-trait = "0.1.81"
derive_builder = "0.20.0"
[dev-dependencies]
fake = "2"
rand = "0.8"
dotenv = "0.15.0"