|
1 | 1 | [package] |
2 | 2 | name = "high-level-services" |
3 | | -version = "0.1.0" |
4 | 3 | edition = "2024" |
| 4 | +authors.workspace = true |
| 5 | +publish.workspace = true |
| 6 | +license.workspace = true |
| 7 | +license-file.workspace = true |
5 | 8 |
|
6 | 9 | [lib] |
7 | 10 |
|
@@ -38,36 +41,36 @@ std = ["mavlink-core/std"] |
38 | 41 |
|
39 | 42 | [dependencies] |
40 | 43 | arbitrary = { version = "1.4", optional = true, features = ["derive"] } |
41 | | -bitflags = "2.10.0" |
| 44 | +bitflags = { workspace = true } |
42 | 45 | defmt = { workspace = true } |
43 | 46 | defmt-rtt = { workspace = true } |
44 | 47 |
|
45 | 48 | driver-services = { workspace = true } |
46 | | -embassy-executor = { version = "0.7.0", features = [ |
| 49 | +embassy-executor = { workspace = true, features = [ |
47 | 50 | "nightly", |
48 | 51 | "task-arena-size-10240", |
49 | 52 | "arch-cortex-m", |
50 | 53 | "executor-thread", |
51 | 54 | "executor-interrupt", |
52 | 55 | "defmt", |
53 | 56 | ] } |
54 | | -embassy-time = { version = "0.4.0", features = [ |
| 57 | +embassy-time = { workspace = true, features = [ |
55 | 58 | "defmt", |
56 | 59 | "defmt-timestamp-uptime", |
57 | 60 | "tick-hz-32_768", |
58 | 61 | ] } |
59 | 62 | embedded-io = { workspace = true } |
60 | | -embedded-io-async = { version = "0.6.1", features = ["defmt-03"] } |
61 | | -libm = { version = "0.2.15" } |
| 63 | +embedded-io-async = { workspace = true, features = ["defmt-03"] } |
| 64 | +libm = { workspace = true } |
62 | 65 | mavlink-core = { version = "0.16.2", default-features = false } |
63 | 66 | num-derive = "0.4.2" |
64 | | -num-traits = { version = "0.2.19", default-features = false } |
| 67 | +num-traits = { workspace = true, default-features = false } |
65 | 68 | peripheral-services = { workspace = true } |
66 | 69 | rand = { version = "0.9", optional = true, default-features = false, features = [ |
67 | 70 | "std", |
68 | 71 | "std_rng", |
69 | 72 | ] } |
70 | | -serde = { version = "1.0.115", optional = true, features = ["derive"] } |
| 73 | +serde = { workspace = true, optional = true } |
71 | 74 | serde_arrays = { version = "0.2.0", optional = true } |
72 | 75 | ts-rs = { version = "11.0.1", optional = true } |
73 | 76 | uor-proc-macros = { workspace = true } |
|
0 commit comments