|
2 | 2 | name = "ace-doip" |
3 | 3 | version = "0.1.0" |
4 | 4 | edition = "2024" |
| 5 | +authors = ["Samuel Preston <samp.reston@outlook.com>"] |
| 6 | +description = "DoIP typed message and session layer implementing ISO 13400-2." |
| 7 | +readme = "README.md" |
| 8 | +repository = "https://github.com/samp-reston/ace" |
| 9 | +license = "MIT or Apache-2.0" |
| 10 | +keywords = ["diagnostics", "vehicle", "standards"] |
| 11 | +categories = ["development-tools", "network-programming", "automotive"] |
5 | 12 |
|
6 | 13 | [features] |
7 | 14 | default = [] |
8 | 15 | alloc = ["ace-core/alloc", "ace-proto/alloc"] |
9 | 16 | std = ["alloc", "ace-core/std", "ace-proto/std"] |
10 | 17 |
|
11 | 18 | [dependencies] |
12 | | -ace-macros = { path = "../ace-macros", default-features = false } |
13 | | -ace-core = { path = "../ace-core", default-features = false } |
14 | | -ace-proto = { path = "../ace-proto", default-features = false } |
15 | | -ace-uds = { path = "../ace-uds", default-features = false } |
16 | | -ace-sim = { path = "../ace-sim", default-features = false } |
| 19 | +ace-macros = { version = "0.1.0", default-features = false } |
| 20 | +ace-core = { version = "0.1.0", default-features = false } |
| 21 | +ace-proto = { version = "0.1.0", default-features = false } |
| 22 | +ace-uds = { version = "0.1.0", default-features = false } |
| 23 | +ace-sim = { version = "0.1.0", default-features = false } |
17 | 24 | bytes = { workspace = true } |
18 | 25 | heapless = { workspace = true } |
19 | 26 |
|
20 | 27 | [dev-dependencies] |
21 | 28 | proptest = { workspace = true } |
22 | | -ace-core = { path = "../ace-core", features = ["alloc"] } |
| 29 | +ace-core = { version = "0.1.0", features = ["alloc"] } |
23 | 30 | bytes = { workspace = true } |
0 commit comments