bbolt-rs 1.3.10

A Rust port of the Bolt database
Documentation
1
2
3
4
5
6
7
8
9
use cfg_aliases::cfg_aliases;

fn main() {
  cfg_aliases! {
    timeout_supported: {any(target_os = "linux", target_os = "macos", target_os = "darwin")},
    mlock_supported: {target_family = "unix"},
    mmap_advise_supported: {target_family = "unix"},
  }
}