-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
30 lines (27 loc) · 856 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 = "rust_sync_force"
version = "0.3.2"
license = "MIT"
description = "Salesforce Sync REST API Client"
documentation = "https://docs.rs/rust_sync_force"
homepage = "https://github.com/0cv/rust_sync_force"
repository = "https://github.com/0cv/rust_sync_force"
readme = "README.md"
keywords = ["Salesforce", "API", "Rust"]
categories = ["web-programming"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
regex = { version = "1.8", default-features = false, features = [
"std",
"perf",
] }
thiserror = { version = "1" }
ureq = { version = "2.6", features = ["json", "cookies"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.96"
[dev-dependencies]
cargo-license = "0.5.1"
anyhow = "1.0.70"
env_logger = "0.10.0"
mockito = "1.0.2"