-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (27 loc) · 843 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
[package]
name = "ask-bayes"
version = "0.2.1"
edition = "2021"
authors = ["ChosunOne <[email protected]>"]
description = "CLI tool for Bayesian inference"
repository = "https://github.com/ChosunOne/ask-bayes"
documentation = "https://docs.rs/ask-bayes"
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["bayesian", "inference", "cli", "rationality", "bayes"]
categories = ["science", "command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
opt-level = 3
lto = true
incremental = true
[dependencies]
clap = { version = "3.1.0", features = ["derive"] }
anyhow = "1.0.54"
sled = "0.34.7"
dirs = "4.0.0"
dialoguer = "0.10.0"
log = "0.4.14"
simplelog = {version = "0.11.2", features = ["paris"]}
prettytable-rs = "0.8.0"
serde_json = "1.0.79"