-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 936 Bytes
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 936 Bytes
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
31
32
33
34
[package]
name = "wallrnd"
version = "1.2.2"
authors = ["Vanille-N <neven.villani@gmail.com>"]
edition = "2018"
license = "MIT"
description = "A generator of random abstract wallpapers"
readme = "README.md"
repository = "https://github.com/Vanille-N/wallrnd"
keywords = ["wallpaper", "random", "desktop"]
categories = ["command-line-utilities", "graphics"]
include = ["src/**/*", "README.md", "assets/*"]
[features]
default = []
all = ["set-wallpaper", "make-png", "nice"]
set-wallpaper = ["wallpaper_rs"]
make-png = ["resvg", "usvg"]
nice = ["scrummage"]
[dependencies]
rand = "0.7.*"
serde = "1.0.*"
serde_derive = "1.0.*"
toml = "0.5.*"
chrono = "0.4.*"
delaunator = "0.2.*"
resvg = { version = "0.11.*", optional = true } # MPL 2.0
usvg = { version = "0.11.*", optional = true } # MPL 2.0
wallpaper_rs = { version = "0.1.0", optional = true } # GPL 3.0
scrummage = { version = "0.1.1", optional = true }
[[bin]]
name = "wallrnd"