-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
32 lines (29 loc) · 838 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
[package]
name = "thermite"
description = "Another rust chess engine"
categories = ["games", "command-line-utilities"]
authors.workspace = true
repository.workspace = true
keywords.workspace = true
version.workspace = true
edition.workspace = true
license-file.workspace = true
readme.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [".", "thermite_core"]
[workspace.package]
keywords = ["chess"]
description = "Another rust chess engine"
categories = ["games", "command-line-utilities"]
version = "0.1.0"
edition = "2021"
authors = ["Jeffrey Meyer <itotallyrock>"]
repository = "https://github.com/itotallyrock/thermite"
license-file = "./LICENSE.md"
readme = "./README.md"
[profile.release]
opt-level = 3
lto = 'fat'
codegen-units = 1
debug = 2