tiny-encrypt 1.8.2

A simple and tiny file encrypt tool
1
2
3
4
5
6
7
8
9
10
11
#[cfg(feature = "secure-enclave")]
use swift_rs::SwiftLinker;

fn main() {
    // Ensure this matches the versions set in your `Package.swift` file.
    #[cfg(feature = "secure-enclave")]
    SwiftLinker::new("11")
        .with_ios("11")
        .with_package("swift-lib", "./swift-lib/")
        .link();
}