2020-02-15 17:39:45 +07:00
|
|
|
[package]
|
2020-05-19 03:52:18 +07:00
|
|
|
name = "lpus"
|
2020-02-15 17:39:45 +07:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["nganhkhoa <mail.nganhkhoa@gmail.com>"]
|
2020-05-19 03:52:18 +07:00
|
|
|
description = "Live pool tag scanning frontend"
|
2020-02-15 17:39:45 +07:00
|
|
|
edition = "2018"
|
|
|
|
|
2020-05-19 03:52:18 +07:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
|
|
name = "lpus"
|
|
|
|
doctest = false
|
2020-02-15 17:39:45 +07:00
|
|
|
|
|
|
|
[dependencies]
|
2020-05-20 15:02:09 +07:00
|
|
|
app_dirs = "1.2.1"
|
2020-02-15 17:39:45 +07:00
|
|
|
pdb = "0.5.0"
|
2020-05-04 18:40:31 +07:00
|
|
|
chrono = "0.4"
|
2020-02-23 02:04:09 +07:00
|
|
|
widestring = "0.4.0"
|
2020-02-27 08:25:39 +07:00
|
|
|
winapi = { version = "0.3.8", features = ["libloaderapi", "processthreadsapi", "winbase", "securitybaseapi", "handleapi", "winnt", "winreg", "fileapi", "ioapiset", "winioctl", "errhandlingapi", "sysinfoapi"] }
|
2020-02-15 17:39:45 +07:00
|
|
|
reqwest = { version = "0.10.1", features = ["blocking"] }
|
2020-06-17 01:47:20 +07:00
|
|
|
serde_json = "1.0.55"
|
2020-06-23 18:27:24 +07:00
|
|
|
parse_int = "0.4.0"
|
2020-06-22 22:31:55 +07:00
|
|
|
# repl dependencies
|
|
|
|
rustyline = "6.2.0"
|
|
|
|
pest = "2.1.3"
|
|
|
|
pest_derive = "2.1.0"
|
2020-07-03 02:08:27 +07:00
|
|
|
# others
|
|
|
|
prettytable-rs = "^0.8"
|