1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#![no_std]
#![feature(generic_associated_types)]

pub mod default_issue_callbacks;
pub mod dns;
pub mod dct;
pub mod features;
pub mod pause;
pub mod staking;
pub mod token_merge;
pub mod transfer_role_proxy;

// TODO: remove alloc feature from the following, after they have been cleaned

pub mod bonding_curve;

pub mod governance;

pub mod users;