-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (33 loc) · 979 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
[package]
name = "startrust"
description = "A revification of the Star Trek game from 1978, rewritten in Rust"
version = "0.1.0"
authors = ["Evan Williams <[email protected]>"]
edition = "2018"
readme = "README.md"
repository = "https://github.com/evanjpw/startrust.git"
categories = ["games"]
keywords = ["retro", "game"]
exclude = ["./.detritus"]
license = "Unlicense"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
thiserror = "1.0"
beep = "0.2"
dimensioned = "0.6" # Was 7.0, but it doesn't work with `beep`, to my knowledge
derive_builder = "0.9.0"
rand = "0.8"
num_enum = "0.5.1"
log = "0.4.11"
pretty_env_logger = "0.4"
termcolor ="1.1"
atty = "0.2.14"
clap = "3.0.0-beta.2"
strum = "0.20"
strum_macros = "0.20"
env_logger = "0.7.1" # Intentionally not current because `pretty_env_logger` isn't
text_io = "0.1.8"
unwrap-infallible = "0.1.5"
[dependencies.num-traits]
version = "0.2"
default-features = false