-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (42 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
43
44
45
46
47
[package]
name = "hollywood"
description = "hollywood actor framework"
edition = "2021"
include = [
"**/*.rs",
"Cargo.toml",
]
keywords = ["actor", "compute", "graph", "pipeline"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/farm-ng/hollywood/"
version = "0.7.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1"
ctrlc = "3.4"
drawille = "0.3"
# hollywood intends to use only basic features of egui, hence
# future versions of egui will likely/hopefully work
eframe = {version = ">= 0.27, <1.0", features = ["wgpu"], optional = true}
#version = ">= 0.27, <1.0",
env_logger = {version = "0.11", optional = true}
grid = "0.13"
hollywood_macros = {version = "0.7.0", path = "hollywood_macros"}
linear_type = {version = "0.4"}
# hollywood intends to use only very basic features of nalgebra, hence
# future versions of nalgebra before the major < 1.0 release are likely to work
nalgebra = ">= 0.32, <1.0"
petgraph = "0.6"
rand = "0.8"
rand_distr = "0.4"
tracing = "0.1"
tracing-subscriber = "0.3"
# executor feature needed
tokio = {version = "1.28", features = ["full"]}
tokio-stream = "0.1"
[features]
default = ["egui"]
egui = ["dep:eframe", "dep:env_logger"]
[profile.release]
panic = 'abort'