c-its-parser 2.2.0

Tools for encoding and decoding ETSI messages (GN + Transport + CAM/DENM/IVIM/SSEM/SREM/MAPEM/SPATEM)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
## [2.2.0] - 2026-05-20

### ๐Ÿš€ Features

- *(docs)* Enable all features in docs.rs
- *(time_utils)* Add conversion from TimeMark to chrono time
- *(ci)* Also build with `time` feature
## [2.1.0] - 2026-05-08

### ๐Ÿš€ Features

- *(pcap)* Also allow normal data frames
- *(docs)* Patch asn.1 doc comments even more
- *(de)* Support packets with just 802.11 header before GN and BTP
- *(extensions)* Add TryInto<ItsMessageId> from u8
- *(lib)* Get ItsMessageId from ItsMessage

### โš™๏ธ Miscellaneous Tasks

- *(releasing)* Always stage Cargo.toml
## [2.0.1] - 2026-04-29

### ๐Ÿš€ Features

- *(geo-utils)* Add option to use libm in no_std environments
## [2.0.0] - 2026-04-24

### ๐Ÿš€ Features

- *(tests)* Fix float comparisons in tests
- Make the library no-std
- *(ci)* Add crate publishing
- [**breaking**] Update rust edition
- *(publishing)* Add "std" to default features, exclude scripts from release package

### ๐Ÿ› Bug Fixes

- *(conversions)* Remove excessive features from cfg conditional
- *(standard)* Remove unused import

### ๐Ÿšœ Refactor

- [**breaking**] Rename "etsi" feature flag
- Reformat code
- [**breaking**] Rename crate, add license
## [1.1.1] - 2026-04-23

### ๐Ÿ› Bug Fixes

- *(de)* Use correct version IDs for DENM and IVIM

### ๐Ÿ“š Documentation

- *(standard)* Fix doxygen style doc attributes
- *(transport)* Remove invalid rust-doc syntax
- Document releasing process
- Overhaul readme, improve docs
- Enable doctest, fix invalid syntax

### โš™๏ธ Miscellaneous Tasks

- *(ci)* Remove irrelevant step
- Generate first changelog
## [1.1.0] - 2026-04-09

### ๐Ÿš€ Features

- *(conversions)* Add HeadingValue to degrees
- *(conversions)* Add "try" methods to values with unavailable value
- *(conversions)* Add YawRateValue conversion
- *(conversions)* Add vehicle size conversions
- *(conversions)* Add acceleration conversions
- *(conversions)* Add CurvatureValue conversion
- *(conversions)* Add SteeringWheelAngleValue conversion
- *(conversions)* Add km/h getters to speeds
- *(conversions)* Add "unavailable" value support to length values
- *(conversions)* Consider "unavailable" value when creating ETSI value
- *(conversions)* Add unit tests

### ๐Ÿ› Bug Fixes

- *(ci)* Disable headless chrome wasm tests for now
- *(conversions)* Fix CDD 2.2.1 YawRateValue "unavailable" value

### ๐Ÿšœ Refactor

- *(conversions)* Add "must_use" attribute everywhere

### ๐Ÿ“š Documentation

- *(conversions)* Fix doc comments

### โš™๏ธ Miscellaneous Tasks

- *(ci)* Update dependencies
- Bump version number
## [1.0.0] - 2026-03-04

### ๐Ÿš€ Features

- *(asn1)* Restructure ETSI sources and update IS 103 301
- Add feature flags for individual messages
- *(de)* Support old CDD XER for MAPEM, SPATEM, SREM, SSEM

### ๐Ÿ› Bug Fixes

- *(asn1)* Workaround parsing issues of old SREM with new definition

### โš™๏ธ Miscellaneous Tasks

- Upgrade xmltree
## [0.8.1] - 2026-01-19

### ๐Ÿš€ Features

- *(ci)* Add wasm build to PR pipeline

### ๐Ÿ› Bug Fixes

- *(wasm)* Rename wasm "decode" to "decode_to"

### โš™๏ธ Miscellaneous Tasks

- Bump version number
## [0.8.0] - 2026-01-14

### ๐Ÿš€ Features

- *(extensions)* Add ItsMessageId enum with conversions
- *(extensions)* Add StationType enum
- *(extensions)* Implement Default for bitstring types
- *(extensions)* Impl TryFrom<String> for DescriptiveName
- *(conversions)* Add SREM data types
- *(geo_utils)* Add from Point to Position3D
- *(time_utils)* Add MOY and DSecond conversions
- *(time_utils)* Add TimestampIts conversions
- *(extensions)* Add enums for DENM sub cause codes
- *(asn1)* Update for rasn 0.15.0 and later
- *(asn1)* Cleanup IS 1.3.1 asn.1 source
- *(asn1)* Remove unsupported messages from IS 1.3.1

### ๐Ÿšœ Refactor

- *(asn1)* Simplify `DEFAULT_VALIDITY` value

### โš™๏ธ Miscellaneous Tasks

- *(asn1)* Cleanup patch file
- *(asn1)* Fix formatting of ASN.1 source
- Bump version number
## [0.7.7] - 2026-01-12

### ๐Ÿ› Bug Fixes

- *(conversion)* Actually apply custom conversion factor for Velocity

### โš™๏ธ Miscellaneous Tasks

- Bump version number
## [0.7.6] - 2026-01-06

### ๐Ÿš€ Features

- *(ci)* Build/ test individual features as well
- *(conversions)* Add velocity conversion (used in MAPEM)
- *(conversions)* Add convenience getter for SpeedLimitList
- *(ci)* Only run on PRs
- *(ci)* Publish NPM package(s) on tags

### ๐Ÿ› Bug Fixes

- *(ci)* Run wasm tests in headless chrome
## [0.7.5] - 2025-11-18

### ๐Ÿš€ Features

- *(feature-flags)* Make geo_utils usable without etsi parser
- *(feature-flags)* Even more feature flags
- *(cargo)* Tie wasm dependencies to features
## [0.7.4] - 2025-11-14

### ๐Ÿš€ Features

- *(geo_utils)* Make delta XY to geo public
- *(conversions)* Add CPM data types
## [0.7.3] - 2025-11-13

### ๐Ÿ› Bug Fixes

- *(geo_utils)* NodeOffsetPointXY::node_LatLon is an absolute position
## [0.7.2] - 2025-10-23

### ๐Ÿš€ Features

- Add conversions to geo-types
- *(extensions)* Add Display for LaneAttributes
- *(conversions)* Add `from_meters` to OffsetB* types

### ๐Ÿ› Bug Fixes

- *(geo_utils)* NodeSetXY shall not contain reference position

### โš™๏ธ Miscellaneous Tasks

- Fix clippy warning
- Bump version number
## [0.7.1] - 2025-10-02

### ๐Ÿš€ Features

- Add missing access to named BIT STRING bits
## [0.7.0] - 2025-09-23

### ๐Ÿš€ Features

- Remove strict dependency on geonetworking's json feature

### โš™๏ธ Miscellaneous Tasks

- Bump version number
## [0.6.1] - 2025-09-17

### โš™๏ธ Miscellaneous Tasks

- Upgrade to etherparse 0.14
- Upgrade to etherparse 0.15
- Upgrade to etherparse 0.19
- Upgrade nom to 8.0
- Update dependencies, bump to v0.6.1
## [0.6.0] - 2025-09-16

### ๐Ÿš€ Features

- Parse DENM Rel1 XER/JER properly
- *(ci)* Add CI with basic checks

### ๐Ÿ› Bug Fixes

- *(test)* Fix failing tests

### ๐Ÿšœ Refactor

- Use rasn v0.27.2 and recompile sources

### โš™๏ธ Miscellaneous Tasks

- Run cargo fmt
- Fix compiler warnings
- Pack large enum variants into Box
- Follow clippy recommendations
- Run cargo-fmt
- Bump to v0.6.0
## [0.5.4] - 2025-05-15

### ๐Ÿš€ Features

- *(transport)* Add convenience fn for decoding tp header

### โš™๏ธ Miscellaneous Tasks

- Re-export geonetworking decode
## [0.5.3] - 2025-05-15

### ๐Ÿ’ผ Other

- Add feature to exclude etsi standards

### โš™๏ธ Miscellaneous Tasks

- Bump to v0.5.3
## [0.5.2] - 2024-08-29

### ๐Ÿš€ Features

- Expose GN/BTP header decoding function
## [0.5.1] - 2024-07-01

### โš™๏ธ Miscellaneous Tasks

- Update rasn dependency
- Bump to v0.5.1
## [0.5.0] - 2024-06-19

### ๐Ÿšœ Refactor

- Create rust api
## [0.4.4] - 2024-06-18

### ๐Ÿš€ Features

- Update deps and bump
## [0.4.3] - 2024-06-13

### ๐Ÿš€ Features

- *(xer)* Handle namespaces while recognizing message id

### โš™๏ธ Miscellaneous Tasks

- Bump to v0.4.3
## [0.4.2] - 2024-05-27

### ๐Ÿš€ Features

- Make decode headers fn public
- Export remove_pcap_headers
## [0.4.1] - 2024-05-08

### ๐Ÿš€ Features

- Add xer codec

### ๐Ÿ› Bug Fixes

- *(xer)* Version detection & xer decoding

### ๐Ÿ“š Documentation

- Update API docs

### โš™๏ธ Miscellaneous Tasks

- Bump to 0.4.1
## [0.3.2] - 2024-04-09

### ๐Ÿš€ Features

- Detect protocol version and return message type

### โš™๏ธ Miscellaneous Tasks

- Bump to v0.3.2
## [0.3.1] - 2024-04-09

### ๐Ÿšœ Refactor

- Update asn1 bindings

### โš™๏ธ Miscellaneous Tasks

- Add asn1 compile script
- Bump to 0.3.1
## [0.3.0] - 2024-04-05

### ๐Ÿš€ Features

- Add standards
- Decode headers
- Provide decoding API
- Encode
- Add catch-all `decode`
- *(standards)* Add IVIM 2.2.1
- Support CPM v2.1.1
- Do best-efford version parsing
- Update standards
- *(de)* Decode standard pcap headers

### ๐Ÿ› Bug Fixes

- Payload retrieval on secured packets
- Replace all gen'd 'i_d's with 'id'

### ๐Ÿ’ผ Other

- Add wasm pack script
- Make wasm cargo feature
- Remove all wasm-only from default features
- Bump etsi-geonetworking to 0.1.3
- Tag geonetworking version and suppress doctests
- Separate package for node.js

### ๐Ÿšœ Refactor

- Pass JSON as Strings
- Use IVIM 2.2.1 by default
- Change decoding method names
- React to upstream API changes
- Move transports library into project

### ๐Ÿ“š Documentation

- Document API
- Add install note
- Update supported versions

### ๐ŸŽจ Styling

- Cargo fmt

### ๐Ÿงช Testing

- Add unit tests
- Pcap header decoding

### โš™๏ธ Miscellaneous Tasks

- Initial commit
- Bump version to v0.1.1
- Ignore `.DS_Store`
- Bump to v0.1.2
- Bump to v0.1.3
- Bump to v0.1.4
- Bump to v0.1.5
- Update geonetworking
- Bump to v0.1.6
- Bump to v0.1.7
- Add repo and bump to v0.1.8
- Add asn1 source files
- Update rasn
- Bump to v0.3.0