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
// Storm Core library: distributed storage & messaging for lightning network.
//
// Written in 2022 by
//     Dr. Maxim Orlovsky <orlovsky@lnp-bp.org>
//
// Copyright (C) 2022 by LNP/BP Standards Association, Switzerland.
//
// You should have received a copy of the MIT License along with this software.
// If not, see <https://opensource.org/licenses/MIT>.

#[macro_use]
extern crate amplify;
#[macro_use]
extern crate strict_encoding;
#[cfg(feature = "serde")]
#[macro_use]
extern crate serde_crate as serde;
#[macro_use]
extern crate internet2;

mod chunk;
pub mod p2p;
mod container;
mod mesg;
mod app;

pub use app::{StormApp, STORM_APP_RGB, STORM_APP_VENDOR_MASK};
pub use chunk::{Chunk, ChunkId};
pub use container::{Container, ContainerId};
pub use mesg::{Mesg, MesgId};