forked from BlockstreamResearch/simplicity-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlib.rs
More file actions
27 lines (23 loc) · 626 Bytes
/
lib.rs
File metadata and controls
27 lines (23 loc) · 626 Bytes
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
#![warn(clippy::all, clippy::pedantic)]
extern crate core;
pub mod arguments_helpers;
pub mod error;
pub mod sdk;
#[cfg(feature = "array-tr-storage")]
pub mod array_tr_storage;
#[cfg(feature = "bytes32-tr-storage")]
pub mod bytes32_tr_storage;
#[cfg(any(
feature = "finance-dcd",
feature = "finance-option-offer",
feature = "finance-options"
))]
pub mod finance;
#[cfg(feature = "simple-storage")]
pub mod simple_storage;
#[cfg(feature = "finance-dcd")]
pub use finance::dcd;
#[cfg(feature = "finance-option-offer")]
pub use finance::option_offer;
#[cfg(feature = "finance-options")]
pub use finance::options;