forked from lorepozo/program-induction
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
33 lines (29 loc) · 958 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
[package]
name = "programinduction"
version = "0.7.4"
authors = ["Lucas Morales <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/lucasem/program-induction"
homepage = "https://github.com/lucasem/program-induction"
documentation = "https://docs.rs/programinduction"
description = "A library for program induction and learning representations."
keywords = ["language", "inference", "bayesian", "genetic", "learning"]
categories = ["algorithms", "science"]
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", ".cargo/registry/src/github.com-1ecc6299db9ec823/programinduction-0.3.0/rustdoc-include-katex-header.html"]
[dependencies]
crossbeam-channel = "0.3"
itertools = "0.8"
lazy_static = "1.3"
maplit = "1.0"
nom = "4.2"
polytype = "6.1"
rand = "0.6"
rayon = "1.0"
serde = { version = "1.0", features = ["derive"] }
term_rewriting = "0.5"
[dev-dependencies]
serde_json = "1.0"
[features]
verbose = []