-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
35 lines (31 loc) · 827 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
32
33
34
35
[package]
name = "openchecks"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A simple checks framework"
repository = "https://github.com/scott-wilson/openchecks"
keywords = ["asset", "checks", "pipeline", "validation"]
include = [
"/Cargo.toml",
"/CHANGELOG.md",
"/LICENSE-APACHE",
"/LICENSE-MIT",
"/README.md",
"/SECURITY.md",
"/src/**/*.rs",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
arbitrary = { version = "1.3.2", features = ["derive"], optional = true }
async-trait = "0.1.81"
bitflags = "2.6.0"
[dev-dependencies]
tokio = { version = "1.38.1", features = [
"macros",
"rt-multi-thread",
"rt",
"time",
] }
[features]
arbitrary = ["dep:arbitrary", "bitflags/arbitrary"]