-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
61 lines (53 loc) · 1.48 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
58
59
60
61
[package]
name = "veecle-pxros"
authors.workspace = true
version.workspace = true
edition.workspace = true
license.workspace = true
description.workspace = true
[dependencies]
bitflags.workspace = true
defmt.workspace = true
futures.workspace = true
heapless.workspace = true
pxros.workspace = true
static_cell.workspace = true
pin-project.workspace = true
[features]
default = ["rt"]
# Enable this to import veecle default implementation for
# 1. Panic handling
# 2. Defmt logging
# 3. Task autodeployment from Rust
#
# If disabled alternative implementation shall be provided
rt = []
[workspace]
resolver = "2"
members = [
"examples/example-*",
"xtask",
]
[workspace.package]
version = "0.1.0"
authors = ["Veecle GmbH - info@veecle.io"]
edition = "2021"
license = "Apache-2.0"
homepage = "https://veecle.io"
description = "A runtime for writing automotive and industrial Rust on top of HighTec's safety kernel for the Infineon AURIX™ platform."
[workspace.dependencies]
bitflags = "2.4"
defmt = "~0.3.8"
futures = { version = "0.3", default-features = false, features = ["async-await"] }
heapless = "0.8.0"
static_cell = "2"
pin-project = "1.1.3"
pxros = { version = "0.2.0", registry = "htc-cargo-index" }
pxros-hr = { version = "0.2.0", registry = "htc-cargo-index" }
illd-rs = { git = "https://github.com/veecle/illd-rs.git" }
veecle-pxros = { path = "." }
# Abort on panic since this is the default behavior on our intended target.
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"