Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aos
GitHub Repository: aos/firecracker
Path: blob/main/src/seccompiler/Cargo.toml
1956 views
1
[package]
2
name = "seccompiler"
3
version = "0.24.0"
4
authors = ["Amazon Firecracker team <[email protected]>"]
5
edition = "2018"
6
description = "Program that compiles multi-threaded seccomp-bpf filters expressed as JSON into raw BPF programs, serializing them and outputting them to a file."
7
homepage = "https://firecracker-microvm.github.io/"
8
license = "Apache-2.0"
9
10
[[bin]]
11
name = "seccompiler-bin"
12
path = "src/seccompiler_bin.rs"
13
14
[dependencies]
15
utils = { path = "../utils" }
16
libc = ">=0.2.39"
17
serde = { version = ">=1.0.27", features = ["derive"] }
18
serde_json = ">=1.0.9"
19
bincode = "1.2.1"
20
21
22