sqlite-rs 0.3.7

SQLite reader in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
fn main() {
  println!("cargo:rerun-if-changed=build/build.rs");
  use std::time::SystemTime;
  let now: String = SystemTime::now()
    .duration_since(SystemTime::UNIX_EPOCH)
    .ok()
    .unwrap()
    .as_secs()
    .to_string();

  println!("cargo:rustc-env=SQLITERS_BUILT_AT={now}")
}