tao-macros 0.1.3

Proc macros for tao
Documentation
1
2
3
4
5
6
7
8
9
10
use tao_macros::generate_package_name;

pub const PACKAGE: &str = generate_package_name!(com_example, tao_app);

fn main() {}

#[test]
fn it_works() {
  assert_eq!(PACKAGE, "com/example/tao_app")
}