bibsync 0.3.1

A Rust package to automatically resolve, synchronize, and validate LaTeX citations across BibTeX databases
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Minimal example for calling the library API.

use bibsync::{ProviderChoice, SyncOptions};

fn main() {
    let options = SyncOptions {
        provider: ProviderChoice::Inspire,
        check: true,
        ..SyncOptions::default()
    };
    println!("check mode: {}", options.check);
}