2017-07-01 07:47:41 +00:00
|
|
|
[package]
|
|
|
|
name = "templates"
|
|
|
|
version = "0.1.0"
|
2022-02-01 22:02:03 +00:00
|
|
|
edition = "2021"
|
2017-07-01 07:47:41 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-02-01 22:02:03 +00:00
|
|
|
serde = {version = "1.0", features = ["derive"] }
|
2017-07-01 07:47:41 +00:00
|
|
|
|
|
|
|
errors = { path = "../errors" }
|
|
|
|
utils = { path = "../utils" }
|
2018-10-02 14:42:34 +00:00
|
|
|
library = { path = "../library" }
|
2017-08-07 11:38:13 +00:00
|
|
|
config = { path = "../config" }
|
2018-02-02 20:35:04 +00:00
|
|
|
imageproc = { path = "../imageproc" }
|
2020-11-28 12:04:49 +00:00
|
|
|
rendering = { path = "../rendering" }
|
2022-02-01 22:02:03 +00:00
|
|
|
libs = { path = "../libs" }
|
2019-12-23 15:16:56 +00:00
|
|
|
|
2020-04-27 07:49:05 +00:00
|
|
|
|
2019-12-23 15:16:56 +00:00
|
|
|
[dev-dependencies]
|
2021-04-21 19:43:02 +00:00
|
|
|
mockito = "0.30"
|
2021-05-11 16:28:01 +00:00
|
|
|
tempfile = "3"
|