forked from KyleCotton/square-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (32 loc) · 1.06 KB
/
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
[package]
name = "square-ox"
version = "0.1.2"
authors = ["Emil Hofstetter <emil.k.hofstetter@gmail.com>"]
edition = "2018"
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/emilHof/square-ox"
categories = ["api-bindings", "asynchronous", "web-programming::http-client"]
keywords = ["square", "finance", "payment", "card-processing"]
description = "An easy, idiomatic, and flexible way of interacting with the Square API, following Rust conventions."
exclude = [
"examples/**/*",
]
[features]
default = ["reqwest/default"]
lambda = ["reqwest/rustls-tls"]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
reqwest = { version = "0.11.11", features = ["blocking", "json"], default-features = false }
serde_json = "1.0.81"
uuid = { version = "0.8", features = ["v4"] }
[dev-dependencies]
tokio = { version = "1.20.0", features = ["macros"] }
square-ox = {path = "../square-ox" }
actix-web = "3"
serde = { version = "1", features = ["derive"] }
actix-cors = "0.5.0"
actix-files = "0.5.0"
log = "0.4.14"
env_logger = "0.8.3"
dotenv = "0.15.0"