[package] name = "seccompiler" version = "1.5.0-dev" authors = ["Amazon Firecracker team "] edition = "2021" build = "../../build.rs" description = "Program that compiles multi-threaded seccomp-bpf filters expressed as JSON into raw BPF programs, serializing them and outputting them to a file." homepage = "https://firecracker-microvm.github.io/" license = "Apache-2.0" [lib] bench = false [[bin]] name = "seccompiler-bin" path = "src/seccompiler_bin.rs" bench = false [dependencies] bincode = "1.2.1" libc = "0.2.147" serde = { version = "1.0.180", features = ["derive"] } serde_json = "1.0.104" thiserror = "1.0.44" utils = { path = "../utils" }