-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
39 lines (30 loc) · 892 Bytes
/
Cargo.toml
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
35
36
37
38
39
[package]
name = "meme-cli"
version = "0.1.2"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A CLI tool to make dank memes, quickly"
repository = "https://github.com/TheRawMeatball/meme-cli"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
structopt = "0.3.25"
memeinator = { path = "memeinator", version = "0.1.0" }
anyhow = "1.0.47"
image = "0.23"
css-color-parser = "0.1.2"
[target.'cfg(not(target_os = "android"))'.dependencies]
arboard = "2"
[workspace]
members = [
"meme-bevy",
"memeinator",
]
# [patch.'https://github.com/TheRawMeatball/bevy']
# bevy = { path = "../bevy" }
# [patch.'https://github.com/TheRawMeatball/ui4']
# ui4 = { path = "../ui4" }
[profile.dev.package."*"]
opt-level = 3
# Maybe also enable only a small amount of optimization for our code:
[profile.dev]
opt-level = 1