Skip to content

Commit

Permalink
Basic implementation for ODM parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
matzipan committed Dec 14, 2023
1 parent 4d4d47e commit dc5ac20
Show file tree
Hide file tree
Showing 9 changed files with 3,469 additions and 8 deletions.
300 changes: 292 additions & 8 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions crates/lox_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ num = "0.4.0"
thiserror.workspace = true
nom = "7.1.3"
fast_polynomial = "0.1.0"
yaserde = { version = "0.7.1", features = ["yaserde_derive"] }
yaserde_derive = "0.7.1"
xsd_types = { git = "https://github.com/lumeohq/xsd-parser-rs/", package = "xsd-types" }
xsd_parser = { git = "https://github.com/lumeohq/xsd-parser-rs/", package = "xsd-parser" }
xsd_macro_utils = { git = "https://github.com/lumeohq/xsd-parser-rs/", package = "xsd-macro-utils" }
xml-rs = "0.8"

[dev-dependencies]
proptest = "1.1.0"
Expand Down
1 change: 1 addition & 0 deletions crates/lox_core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
*/

pub mod odm;
pub mod bodies;
pub mod communications;
pub mod ephemeris;
Expand Down
5 changes: 5 additions & 0 deletions crates/lox_core/src/odm.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pub mod common;
pub mod opm;
pub mod ocm;
pub mod oem;
pub mod omm;
Loading

0 comments on commit dc5ac20

Please sign in to comment.