product_os_tower_service/
lib.rs

1#![no_std]
2extern crate no_std_compat as std;
3extern crate alloc;
4
5use std::prelude::v1::*;
6//#![cfg_attr(not(feature = "std"), no_std)]
7
8#[cfg(not(feature = "std"))]
9mod no_std;
10
11#[cfg(not(feature = "std"))]
12pub use crate::no_std::*;
13
14#[cfg(feature = "std")]
15pub use tower_service::*;
16