forked from tzmfreedom/rustforce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (25 loc) · 851 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
[package]
name = "rustforce"
version = "0.2.1"
authors = ["tzmfreedom <[email protected]>"]
license = "MIT"
description = "Salesforce REST API Client"
documentation = "https://docs.rs/rustforce"
homepage = "https://github.com/tzmfreedom/rustforce"
repository = "https://github.com/tzmfreedom/rustforce"
readme = "README.md"
keywords = ["Salesforce", "API"]
categories = ["web-programming"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11.4", features = ["json"] }
serde = { version = "1.0.114", features = ["derive"] }
serde_json = "1.0.57"
regex = "1.5"
[dev-dependencies]
cargo-license = "0.3.0"
mockito = "0.27.0"
tokio = { version = "1.0", features = ["rt-multi-thread", "macros"] }
env_logger = "0.7.1"
anyhow = "1.0.32"