2017-07-01 16:47:41 +09:00
|
|
|
[package]
|
|
|
|
name = "config"
|
|
|
|
version = "0.1.0"
|
2018-03-14 18:22:24 +01:00
|
|
|
authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"]
|
2019-12-21 16:52:39 -05:00
|
|
|
edition = "2018"
|
2020-06-15 19:14:25 +02:00
|
|
|
include = ["src/**/*"]
|
2017-07-01 16:47:41 +09:00
|
|
|
|
|
|
|
[dependencies]
|
2019-06-21 09:24:14 +02:00
|
|
|
toml = "0.5"
|
2018-02-15 10:41:49 +01:00
|
|
|
serde = "1"
|
|
|
|
serde_derive = "1"
|
2017-08-07 20:38:13 +09:00
|
|
|
chrono = "0.4"
|
2018-06-22 13:39:29 +02:00
|
|
|
globset = "0.4"
|
2018-10-09 14:33:43 +02:00
|
|
|
lazy_static = "1"
|
2020-05-12 20:07:02 +02:00
|
|
|
syntect = "4.1"
|
2017-07-01 16:47:41 +09:00
|
|
|
|
|
|
|
errors = { path = "../errors" }
|
2019-01-11 20:29:46 +01:00
|
|
|
utils = { path = "../utils" }
|