-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathCargo.toml
42 lines (39 loc) · 1.29 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
[package]
name = "hotshot-builder-core"
version = { workspace = true }
edition = { workspace = true }
license = "MIT"
[dependencies]
marketplace-builder-shared = { workspace = true }
anyhow = { workspace = true }
async-broadcast = { workspace = true }
async-lock = { workspace = true }
async-trait = { workspace = true }
atomic = "0.6"
bincode = { workspace = true }
bytemuck = { version = "1.19", features = ["derive"] }
coarsetime = "0.1.36"
committable = { workspace = true }
derive_more = { workspace = true, features = ["deref", "deref_mut", "debug"] }
futures = { workspace = true }
hotshot = { workspace = true }
hotshot-builder-api = { workspace = true }
hotshot-types = { workspace = true }
lru = { workspace = true }
serde = { workspace = true, features = ["derive"] }
sha2 = { workspace = true }
tagged-base64 = { workspace = true }
tide-disco = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
vbs = { workspace = true }
[dev-dependencies]
hotshot-example-types = { workspace = true }
hotshot-macros = { workspace = true }
hotshot-task-impls = { workspace = true }
hotshot-testing = { workspace = true }
num_cpus = { workspace = true }
portpicker = { workspace = true }
tracing-test = { workspace = true }
url = { workspace = true }