2017-07-01 16:47:41 +09:00
|
|
|
[package]
|
|
|
|
name = "utils"
|
|
|
|
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]
|
2021-04-19 16:33:12 +08:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2020-02-05 09:13:14 +01:00
|
|
|
|
|
|
|
errors = { path = "../errors" }
|
2022-02-01 23:02:03 +01:00
|
|
|
libs = { path = "../libs" }
|
2017-07-01 16:47:41 +09:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2018-04-25 10:28:23 +02:00
|
|
|
tempfile = "3"
|