2020-01-18 12:43:35 +01:00
|
|
|
# Reference https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[package]
|
2020-02-03 10:30:11 +01:00
|
|
|
name = "zernit"
|
2020-01-18 12:43:35 +01:00
|
|
|
description = "FIXME: description needed"
|
2020-01-25 15:56:00 +01:00
|
|
|
keywords = ["system-manager"]
|
2020-01-18 12:43:35 +01:00
|
|
|
version = "0.0.0"
|
|
|
|
authors = ["Kreyren <KostWarCZE@RiXotStudio.cz>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
2020-01-19 07:39:12 +01:00
|
|
|
# FIXME: Implement automation that bumps the dependencies in a new commit to make it easier to track dependency-caused issues
|
2020-01-18 12:43:35 +01:00
|
|
|
[dependencies]
|
2020-01-19 07:39:12 +01:00
|
|
|
# FIXME: Replace with latest once development is in gold
|
|
|
|
clap = "2.33.0"
|
2020-01-31 06:48:58 +01:00
|
|
|
# Used for repository management as alternative to 'make'
|
2020-02-24 09:53:11 +01:00
|
|
|
cargo-make = "0.28.0"
|
2020-02-03 09:48:17 +01:00
|
|
|
# Used for reading toml files
|
2020-02-07 07:17:04 +01:00
|
|
|
toml = "0.5.6"
|
2020-02-09 16:29:08 +01:00
|
|
|
# Custom logging solution
|
|
|
|
zernit-logger = { path = "src/libs/rustlang/zernit-logger" }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
# Used for benchmarking
|
|
|
|
criterion = "0.3.1"
|
|
|
|
|
2020-02-10 18:41:28 +01:00
|
|
|
[[bench]]
|
|
|
|
name = "example_bench"
|
|
|
|
harness = false
|