-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
34 lines (30 loc) · 1.02 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
[package]
name = "programinduction"
version = "0.9.0"
edition = "2021"
authors = ["Lore Anaya Pozo <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/lorepozo/program-induction"
homepage = "https://github.com/lorepozo/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", "rustdoc-include-katex-header.html"]
[dependencies]
crossbeam-channel = "0.5.8"
itertools = "0.12.0"
once_cell = "1.18.0"
polytype = "7.0.1"
rand = { version = "0.8.5", features = ["small_rng"] }
rand_core = "^0.3" # for compat with term_rewriting 0.7 (on old version of rand)
rayon = "1.8.0"
serde = { version = "1.0", features = ["derive"] }
term_rewriting = "0.7.0"
winnow = "0.5.28"
[dev-dependencies]
serde_json = "1.0"
[features]
verbose = []