kanit

Toy init system
Log | Files | Refs | README | LICENSE

Cargo.toml (354B)


      1 [package]
      2 name = "kanit-supervisor"
      3 version.workspace = true
      4 edition.workspace = true
      5 
      6 [features]
      7 cli = ["dep:xflags", "nix/signal"]
      8 
      9 [dependencies.async-process]
     10 version = "2.2"
     11 
     12 [dependencies.xflags]
     13 version = "0.3"
     14 optional = true
     15 
     16 [dependencies.nix]
     17 version = "0.29"
     18 features = ["user", "sched", "fs"]
     19 
     20 [dependencies.kanit-common]
     21 path = "../common"