-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
41 lines (36 loc) · 1.19 KB
/
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
40
41
[package]
name = "littlewing"
description = """
A chess engine rated at 2050+ ELO, compatible with both UCI and XBoard
protocols, with a nice CLI, and a documented library.
"""
version = "0.7.0"
license = "MIT"
authors = ["Vincent Ollivier <[email protected]>"]
repository = "https://github.com/vinc/littlewing"
homepage = "https://vinc.cc/software/littlewing"
readme = "README.md"
[lib]
name = "littlewing"
path = "src/lib.rs"
[[bin]]
name = "littlewing"
path = "src/main.rs"
doc = false
[features]
default = ["std", "bin"]
std = ["dirs", "regex", "rustyline", "rustyline-derive", "no-std-compat/std"]
bin = ["atty", "getopts"]
[dependencies]
atty = { version = "0.2.14", optional = true }
dirs = { version = "4.0.0", optional = true }
getopts = { version = "0.2.21", optional = true }
lazy_static = "1.4.0"
no-std-compat = { version = "0.4.1", features = ["alloc", "compat_macros"] }
rand = { version = "0.8.5", default-features = false }
rand_xorshift = { version = "0.3.0", default-features = false }
regex = { version = "1.3.9", optional = true }
rustyline = { version = "10.0.0", optional = true }
rustyline-derive = { version = "0.7.0", optional = true }
[badges]
travis-ci = { repository = "vinc/littlewing" }