[–] 1 point 7 hours ago

it has been more of slow creep of hardware requirements, I guess now that they are actually looking into the performance of the game they are actually realized they should updated it long ago, if anythinf recently performance has made great strides with mojang finnally addressing some low hanging bottlenecks that mods had been fixing for years

  • source
  • parent
  • context
  •  
    [features]
    default = ["runtime_completion_gen", "comptime_completion_gen", "comptime_manpage_gen"]
    runtime_completion_gen = ["dep:clap_complete",]
    comptime_completion_gen = ["dep:clap_complete"]
    comptime_manpage_gen = ["dep:clap_mangen"]
    
    [dependencies]
    anyhow = "1.0.0"
    clap = { version = "4.0.0", features = ["derive", "help"] }
    clap_complete = { version = "4.0.0", optional = true }
    ignore = "0.4.25"
    
    [build-dependencies]
    clap = { version = "4.0.0", features = ["derive"] }
    clap_complete = { version = "4.0.0", optional = true }
    clap_mangen = { version = "0.2.31", optional = true }
    
    

    The features that start with comptime, as their name suggest, happen at comp time in build.rs, they generate shell completions and manpages for my cli utility, thus they depend only at build time to their respective dependencies, but there seems no way to specify this.

    Does anyone know if there is a way to specify build deps for a feature?

     

    I get a considerable ammount of ingrown hairs when I shave, with some being quite nasty (very inflamated and sensitive, laser is out of reach for now, I was considering waxing and epilation but still a out of reach now, I mostly want a way to help prevent ingrown hairs from appearing in the first place or making them go away faster

    view more: next ›