-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (45 loc) · 1.68 KB
/
Cargo.toml
File metadata and controls
50 lines (45 loc) · 1.68 KB
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
[workspace]
members = [
"IOLinke-DEVICE",
"IOLinke-macros",
"IOLinke-types",
"IOLinke-util",
"IOLinke-Test-utils",
"IOLinke-Derived-config",
"IOLinke-Dev-config",
"IOLinke-Examples",
"IOLinke-Bindings",
"tasks/configuration",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2024"
authors = ["Raghava Ch"]
license = "GPL-3"
repository = "https://github.com/Raghava-Ch/IOLinke-Device"
readme = "README.md"
keywords = ["iolink", "embedded", "no-std", "device"]
categories = ["embedded", "no-std"]
description = "Complete IO-Link Master and Device Stack implementation in Rust, Compliant with IO-Link Specification v1.1.4"
[workspace.dependencies]
# Shared dependencies across workspace
iolinke-device = { path = "IOLinke-DEVICE", default-features = false }
iolinke-types = { path = "IOLinke-types", default-features = false }
iolinke-macros = { path = "IOLinke-macros", default-features = false }
iolinke-dev-config = { path = "IOLinke-Dev-config", default-features = false }
iolinke-derived-config = { path = "IOLinke-Derived-config", default-features = false }
iolinke-util = { path = "IOLinke-util", default-features = false }
iolinke-test-utils = { path = "IOLinke-Test-utils", default-features = false }
heapless = { version = "0.8.0" }
bitfields = { version = "1.0.0" }
serde = { version = "1.0.228", features = ["derive"] }
serde_spanned = { version = "1.0.3" }
toon-rust = "0.1.3"
serde_json = { version = "1.0.145" }
# Macro dependencies
proc-macro2 = { version = "1.0" }
quote = { version = "1.0" }
syn = { version = "2.0", features = ["full", "extra-traits"] }
[workspace.metadata]
description = "Complete IO-Link Device Stack implementation in Rust"