-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(serde): add optional serde integration (#105)
This allows this library to be used as a dependency by other Rust crates. KAG-2426
- Loading branch information
1 parent
6be1f83
commit 5b58527
Showing
4 changed files
with
65 additions
and
9 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
mod ast; | ||
mod context; | ||
pub mod ffi; | ||
mod interpreter; | ||
mod parser; | ||
mod router; | ||
mod schema; | ||
mod semantics; | ||
pub mod ast; | ||
Check warning on line 1 in src/lib.rs GitHub Actions / Rust Clippy Reportpackage `atc-router` is missing `package.categories` metadata
Check warning on line 1 in src/lib.rs GitHub Actions / Rust Clippy Reportpackage `atc-router` is missing `package.keywords` metadata
|
||
pub mod context; | ||
pub mod interpreter; | ||
pub mod parser; | ||
pub mod router; | ||
pub mod schema; | ||
pub mod semantics; | ||
mod ast_tests; | ||
|
||
#[cfg(feature = "ffi")] | ||
pub mod ffi; | ||
|
||
#[macro_use] | ||
extern crate pest_derive; |