20 lines
438 B
TOML
20 lines
438 B
TOML
[package]
|
|
name = "foil"
|
|
version = "0.1.0"
|
|
authors = ["Tom Alexander <craftkiller@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
docopt = "1.1.0"
|
|
serde = "1.0.91"
|
|
log = "0.4.6"
|
|
pretty_env_logger = "0.3.0"
|
|
rand = "0.6.5"
|
|
dirs = "2.0.0"
|
|
|
|
[dependencies.rusqlite]
|
|
version = "0.18.0"
|
|
features = ["bundled"] # Compiles and statically links sqlite
|