acadrust 0.3.4

A pure Rust library for reading and writing CAD files in DXF format (ASCII and Binary) and DWG format (Binary).
Documentation
//! File I/O for DXF and DWG formats.
//!
//! | Sub-module | Capabilities |
//! |------------|----------------------------------------------------|
//! | [`dxf`]    | Read/write ASCII and Binary DXF (R12 – R2018+) |
//! | [`dwg`]    | Read/write native DWG binary (R13 – R2018) |
//!
//! The top-level re-exports [`DxfReader`], [`DxfWriter`], [`DwgReader`],
//! and [`DwgWriter`] for quick access.

pub mod dxf;
pub mod dwg;

#[cfg(feature = "import")]
pub mod import;

pub use dxf::{DxfReader, DxfWriter};
pub use dwg::{DwgReader, DwgWriter};