fnox 0.1.0

A flexible secret management tool supporting multiple providers and encryption methods
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Build script for fnox
// Generates settings code from settings.toml

#[path = "build/generate_settings.rs"]
mod generate_settings;

fn main() {
    // Tell Cargo to rerun this build script if settings.toml changes
    println!("cargo:rerun-if-changed=settings.toml");

    // Generate settings code
    generate_settings::generate().expect("Failed to generate settings code");
}