summaryrefslogtreecommitdiff
path: root/benoit-cli/Cargo.toml
blob: 7f00df255c65e28122f027946de63da077479260 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name        = "benoit-cli"
edition     = "2021"
license     = "GPL-3.0-or-later"
description = "Multithreaded Mandelbrot renderer, CLI front-end."

version.workspace    = true
authors.workspace    = true
homepage.workspace   = true
repository.workspace = true
readme.workspace     = true

[features]
notify = ["notify-rust"]

[dependencies]
benoit = { path = "../benoit" }

ctrlc      = "3.4.4"
num-traits = "0.2.18"
rug        = "1.24.0"
toml       = "0.8.10"

notify-rust = { version = "4.10.0", optional = true }

[target.'cfg(windows)'.dependencies]
windows = "0.54.0"

[lints]
workspace = true