-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (23 loc) · 899 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
[package]
name = "nimlib"
version = "0.1.1"
edition = "2021"
authors = ["Tanja <[email protected]>"]
description = "A Rust library for Nim games: calculate nimbers and possible moves"
documentation = "https://docs.rs/nimlib"
homepage = "https://github.com/Tanja-4732/nimlib#readme"
repository = "https://github.com/Tanja-4732/nimlib"
license = "LGPL-3.0-or-later"
keywords = ["nim", "nimber", "nim-game"]
categories = ["mathematics", "game-development"]
include = ["/src", "/Cargo.toml", "/README.md", "/LICENSE.md"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
lazy_static = "1.4.0"
serde = { version = "1.0.152", features = ["std", "serde_derive"] }
# Dependencies for the CLI
clap = { version = "4.1.4", features = ["derive", "wrap_help"] }
serde_json = "1.0.93"
clap-verbosity-flag = "2.0.0"
log = "0.4.17"
env_logger = "0.10.0"