[package] name = "lprun" version = "0.2.0" authors = ["snsvrno "] license = "MIT" description = "a library for running and managing LOVE binaries" repository = "https://github.com/snsvrno/lprun-rs" readme = "../README.md" keywords = ["lovepack","love2D","love"] categories = [] [dependencies] # good signatures, logging failure = "0.1" log = "0.4" # for cli interface clap = { version = "2.32", optional = true } prettytable-rs = { version = "0.8", optional = true } # for HashSet lookups. mainly for CLI output smart-hash = "0.1" smart-hash-derive = "0.1" # for getting releases repo reqwest = "0.9" # downloading JSON serde_json = "1.0" # parsing the JSON toml = "0.4" # saving the parsed releases to local file regex = "1.1" # for parsing version information from releases serde_derive = "1.0" # for saving release to local file serde = "1.0" # for saving release to local file # lovepack libraries version-lp = "0.2" platform-lp = "0.2" download-lp = "0.2" archive-lp = { version = "0.2.3", features = ["indicate"] } lpsettings = "0.2" love = "0.2" [features] cli = [ "clap", "prettytable-rs" ]