Cargo.toml 756 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. [package]
  2. name = "test-distro"
  3. publish = false
  4. version = "0.1.0"
  5. authors.workspace = true
  6. edition.workspace = true
  7. homepage.workspace = true
  8. license.workspace = true
  9. repository.workspace = true
  10. [[bin]]
  11. name = "init"
  12. path = "src/init.rs"
  13. [[bin]]
  14. name = "modprobe"
  15. path = "src/modprobe.rs"
  16. [[bin]]
  17. name = "depmod"
  18. path = "src/depmod.rs"
  19. [dependencies]
  20. anyhow = { workspace = true, features = ["std"] }
  21. clap = { workspace = true, default-features = true, features = ["derive"] }
  22. glob = { workspace = true }
  23. nix = { workspace = true, features = [
  24. "user",
  25. "fs",
  26. "mount",
  27. "reboot",
  28. "kmod",
  29. "feature",
  30. ] }
  31. object = { workspace = true, features = ["elf", "read_core", "std"] }
  32. walkdir = { workspace = true }
  33. xz2 = { workspace = true }