-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
31 lines (28 loc) · 878 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
[package]
name = "openwhisk-client-rust"
version = "0.1.7"
authors = ["HugoByte <[email protected]>"]
repository = "https://github.com/hugobyte/openwhisk-client-rust"
license = "Apache-2.0"
edition = "2018"
description = "OpenWhisk Client written in Rust"
documentation = "https://docs.rs/openwhisk-rust/latest/openwhisk_rust/"
readme = "readme.md"
exclude = [
"tests/*",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde_json = "1.0.79"
serde = { version = "1.0.137", features = ["derive"]}
serde_derive = "1.0.137"
reqwest = { version = "0.11.10", features = ["blocking", "json", "native-tls"] }
derive-new = "0.5.9"
http = "0.2.8"
base64 = "0.13.0"
wasi-experimental-http = "0.9.0"
bytes = "1"
wiremock = "0.5.17"
async-std = { version = "1.12.0", features = ["attributes"] }
[lib]
doctest = false