Cargo.toml 438 B

12345678910111213141516171819202122
  1. # -*- coding: utf-8 -*-
  2. [package]
  3. name = "cms-seccomp"
  4. version = "1.0.0"
  5. edition = { workspace = true }
  6. license = { workspace = true }
  7. authors = { workspace = true }
  8. publish = false
  9. [features]
  10. default = []
  11. # Include old syscalls in filters that are usually not used by modern libc.
  12. oldsyscalls = []
  13. [dependencies]
  14. anyhow = { workspace = true }
  15. libc = { workspace = true }
  16. seccompiler = { workspace = true }
  17. # vim: ts=4 sw=4 expandtab