sqlite3_ext 0.2.1

Build loadable extensions for SQLite using Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use sqlite3_ext::sqlite3_match_version;

fn test_invalid_version() {
    sqlite3_match_version! {
        308 => {
            println!("feature supported");
        }
        _ => (),
    }
}

fn main() {}