-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (35 loc) · 894 Bytes
/
Cargo.toml
File metadata and controls
41 lines (35 loc) · 894 Bytes
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
[package]
name = "tricore-probe"
version = "0.2.1"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
description = "Tricore-probe: Run Rust effortlessly on Infineon AURIX™ TriCore™ chips."
rust-version = "1.81.0"
[dependencies]
anyhow = "1.0.69"
bitfield-struct = "0.6.1"
byteorder = "1.5.0"
clap = { version = "4.1.4", features = ["derive"] }
colored = "2.0.0"
log = "0.4.17"
tempfile = "3.3.0"
env_logger = "0.11.3"
elf = "0.7.1"
rust-mcd = { path = "rust-mcd" }
[target.'cfg(target_os = "linux")'.dependencies]
udev = {version = "0.8.0"}
[features]
in_docker = []
[workspace]
members = [
"rust-mcd",
]
[workspace.package]
authors = ["Veecle GmbH - info@veecle.io"]
edition = "2021"
license = "Apache-2.0 OR MIT"
homepage = "https://veecle.io"
repository = "https://github.com/veecle/tricore-probe"