shapely-json 3.1.0

JSON serialization and deserialization for Shapely types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![warn(missing_docs)]
#![doc = include_str!("../README.md")]

mod parser;

#[cfg(test)]
mod tests;

mod from_json;
pub use from_json::*;

mod to_json;
pub use to_json::*;