Skip to content

Commit 78efa51

Browse files
committed
update readme
1 parent 8d20f5d commit 78efa51

3 files changed

Lines changed: 6 additions & 1 deletion

File tree

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
This crate provides functionality to read, modify and write Autosar 4 arxml files,
88
both separately and in projects consisting of multiple files.
99

10+
The crate [autosar-data-abstraction](https://github.com/DanielT/autosar-data-abstraction) provides an abstraction layer on top of this crate.
11+
1012
There is also a Python module which is based on this crate: [autosar-data-py](https://github.com/DanielT/autosar-data-py) [![PyPI version](https://badge.fury.io/py/autosar-data.svg)](https://badge.fury.io/py/autosar-data)
1113

1214
## Features

autosar-data-specification/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//!
55
//! The Autosar data model is originally specified as .xsd files - one for each version of the standard.
66
//! All these separate xsd files were parsed into data structures and combined; this crate contains the
7-
//! combined specification data of all 21 Autosar 4 standard revisions.
7+
//! combined specification data of all 22 Autosar 4 standard revisions.
88
//!
99
//! ## Supported standards:
1010
//!
@@ -31,6 +31,7 @@
3131
//! | `AUTOSAR_00051.xsd` | AUTOSAR R22-11 |
3232
//! | `AUTOSAR_00052.xsd` | AUTOSAR R23-11 |
3333
//! | `AUTOSAR_00053.xsd` | AUTOSAR R24-11 |
34+
//! | `AUTOSAR_00054.xsd` | AUTOSAR R25-11 |
3435
//!
3536
//! ## Using the crate
3637
//!

autosar-data/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
//! - support for Autosar paths and cross references
1313
//! - all operations are thread safe, e.g. it is possible to load mutliple files on separate threads
1414
//!
15+
//! The crate `autosar-data-abstraction` provides higher level abstractions on top of this crate, which simplify common tasks.
16+
//!
1517
//! # Examples
1618
//!
1719
//! ```no_run

0 commit comments

Comments
 (0)