-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
57 lines (51 loc) · 1.63 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
48
49
50
51
52
53
54
55
56
57
[workspace.package]
description = "Deterministic Middleware for Robotics"
version = "0.3.0"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["John Hughes <[email protected]>"]
repository = "https://github.com/jondo2010/boomerang"
keywords = ["actor", "deterministic", "concurrency", "middleware", "robotics"]
categories = []
readme = "README.md"
exclude = ['.gitignore', '.cargo/config', '.vscode', '.devcontainer', '.github']
[workspace.dependencies]
anyhow = "1.0"
arrow = { version = "52", default-features = false }
time = { version = "0.3", features = [] }
document-features = "0.2"
erased-serde = "0.4"
itertools = "0.13"
rayon = "1.10"
serde = "1.0"
serde_arrow = { version = "0.11", features = ["arrow-52"] }
serde_flexitos = { version = "0.2", features = ["id_trait"] }
thiserror = "1.0"
tracing = "0.1"
linkme = { version = "0.3" }
# Local crates
boomerang = { path = "boomerang", version = "0.3.0" }
boomerang_derive = { path = "boomerang_derive", version = "0.3.0" }
boomerang_runtime = { path = "boomerang_runtime", version = "0.3.0" }
boomerang_tinymap = { path = "boomerang_tinymap", version = "0.3.0" }
boomerang_util = { path = "boomerang_util", version = "0.3.0" }
boomerang_builder = { path = "boomerang_builder", version = "0.3.0" }
tinymap = { package = "boomerang_tinymap", path = "boomerang_tinymap", version = "0.3.0" }
[workspace]
members = [
"boomerang",
"boomerang_builder",
"boomerang_derive",
"boomerang_runtime",
"boomerang_tinymap",
"examples/snake",
]
resolver = "2"
[profile.profiling]
inherits = "release"
debug = true
[profile.release]
panic = "abort"
lto = true
opt-level = 3
[patch.crates-io]