1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
//! This crate is pure Rust ECHONET Lite implementation including
//! - serde implementation of ECHONET Lite packet
//! - detailed property configurations of ECHONET Device objects (WIP)
//!
//! but not included
//! - transport layer (usually, UDP with IPv4/IPv6) implementation
//! - specific ECHONET Lite object behavior

#![cfg_attr(not(feature = "std"), no_std)]
extern crate alloc;

/// All the types we need from `std`, `core`, and `alloc` crates.
mod lib {
    mod core {
        #[cfg(not(feature = "std"))]
        pub use core::*;
        #[cfg(feature = "std")]
        pub use std::*;
    }

    pub use self::core::clone::{self, Clone};
    pub use self::core::convert::{self, From, Into};
    pub use self::core::default::{self, Default};
    pub use self::core::fmt::{self, Debug, Display};
    pub use self::core::result::{self, Result};
    pub use self::core::{ops, str};

    #[cfg(not(feature = "std"))]
    pub use alloc::string::{String, ToString};
    #[cfg(feature = "std")]
    pub use std::string::{String, ToString};

    #[cfg(not(feature = "std"))]
    pub use alloc::vec::{self, Vec};
    #[cfg(feature = "std")]
    pub use std::vec::{self, Vec};

    #[cfg(not(feature = "std"))]
    pub use alloc::boxed::Box;
    #[cfg(feature = "std")]
    pub use std::boxed::Box;

    #[cfg(feature = "std")]
    pub use std::error;

    #[cfg(feature = "std")]
    pub use std::io;
}

mod el_packet;
mod error;
mod io;

mod de;
mod ser;
pub use de::deserialize;
pub use ser::serialize;
pub mod object;
pub mod prelude;
pub use el_packet::*;
pub use error::{Error, ErrorKind, Result};