sassi-macros 0.1.0-beta.2

Support proc-macro crate re-exported by sassi for ordinary adopters.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Unknown `#[cacheable(...)]` options are rejected.

use sassi::Cacheable;

#[derive(Cacheable)]
#[cacheable(foo = "bar")]
struct UnknownCacheableOption {
    id: i64,
}

fn main() {}