-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (38 loc) · 1.05 KB
/
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
36
37
38
39
40
41
42
43
[package]
name = "circus_simulation"
version = "0.1.0"
authors = ["Pierre Zemb <[email protected]>"]
edition = "2021"
rust-version = "1.56"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/PierreZ/circus"
homepage = "https://github.com/PierreZ/circus"
documentation = "https://docs.rs/circus_simulation"
include = [
"../LICENSE-APACHE",
"../LICENSE-MIT",
"README.md",
".gitignore",
"Cargo.toml",
"src/*.rs",
"src/*/*.rs",
"tests/*.rs",
]
description = "Simulation framework inspired by FoundationDB"
categories = ["simulation"]
[dependencies]
circus_buggify = { version = "0.1.0", path = "../circus-buggify"}
rand = { version = "0.8.5", features = ["small_rng"] }
parking_lot = "0.12.0"
once_cell = "1.10.0"
tracing = "0.1.34"
futures = "0.3.21"
crossbeam-queue = "0.3.5"
enum_dispatch = "0.3.8"
async-trait = "0.1.53"
[dev-dependencies]
tracing-subscriber = "0.3.11"
[badges]
coveralls = { repository = "PierreZ/circus", branch = "main", service = "github" }
maintenance = { status = "experimental" }