-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 826 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 826 Bytes
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
[package]
name = "nils-api-test"
version = "0.6.8"
edition.workspace = true
license.workspace = true
description = "CLI crate for nils-api-test in the nils-cli workspace."
repository = "https://github.com/sympoies/nils-cli"
[lib]
name = "api_test"
path = "src/lib.rs"
[[bin]]
name = "api-test"
path = "src/main.rs"
[dependencies]
anyhow = { workspace = true }
api-testing-core = { version = "0.6.8", path = "../api-testing-core", package = "nils-api-testing-core" }
clap = { workspace = true }
clap_complete = { workspace = true }
nils-term = { version = "0.6.8", path = "../nils-term", package = "nils-term" }
serde = { workspace = true }
serde_json = { workspace = true }
[dev-dependencies]
nils-test-support = { version = "0.6.8", path = "../nils-test-support" }
pretty_assertions = { workspace = true }
tempfile = "3"