-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 938 Bytes
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 938 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
30
31
[package]
authors = ["Matthew Treinish <mtreinish@kortar.org>"]
categories = ["development-tools::testing"]
description = "A subunit v2 protocol implementation in Rust"
edition = "2021"
keywords = ["subunit"]
license = "Apache-2.0"
name = "subunit"
readme = "README.md"
repository = "https://github.com/mtreinish/subunit-rust"
version = "0.3.1"
[features]
async = ["dep:async-stream", "dep:async-trait", "dep:tokio", "dep:tokio-stream"]
default = ["async", "sync"]
sync = []
v1 = ["async", "dep:winnow"]
[dependencies]
async-stream = { version = "0.3", optional = true }
async-trait = { version = "0.1.81", optional = true }
chrono = "0.4.38"
crc32fast = "1.3"
enumset = "1.1.3"
thiserror = "2.0.6"
tokio = { version = "1.0", optional = true, features = ["full"] }
tokio-stream = { version = "0.1", optional = true }
winnow = { version = "1.0.0", optional = true, features = [] }
[dev-dependencies]
tokio-util = { version = "0.7.11" }