-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 1.16 KB
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
[package]
name = "nils-api-testing-core"
version = "0.6.8"
edition.workspace = true
license.workspace = true
description = "Library crate for nils-api-testing-core in the nils-cli workspace."
repository = "https://github.com/sympoies/nils-cli"
[lib]
name = "api_testing_core"
path = "src/lib.rs"
[dependencies]
anyhow = { workspace = true }
base64 = "0.22"
jaq-core = "3.0.0-gamma"
jaq-json = { version = "2.0.0-gamma", features = ["serde"] }
jaq-std = "3.0.0-gamma"
reqwest = { version = "0.13", default-features = false, features = ["blocking", "multipart", "rustls"] }
shell-words = "1"
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
time = { version = "0.3", features = ["formatting", "local-offset"] }
tungstenite = { version = "0.29", default-features = false, features = ["handshake", "rustls-tls-webpki-roots"] }
nils-common = { version = "0.6.8", path = "../nils-common", package = "nils-common" }
nils-term = { version = "0.6.8", path = "../nils-term", package = "nils-term" }
[dev-dependencies]
nils-test-support = { version = "0.6.8", path = "../nils-test-support" }
pretty_assertions = { workspace = true }
tempfile = "3"