-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 744 Bytes
/
Cargo.toml
File metadata and controls
26 lines (24 loc) · 744 Bytes
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
[package]
name = "eliza"
version = "2.0.1"
authors = ["arosspope <andrew.pope456@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
homepage = "https://github.com/arosspope/eliza-rs.git"
repository = "https://github.com/arosspope/eliza-rs.git"
description = "A rust implementation of ELIZA - a natural language processing program developed by Joseph Weizenbaum in 1966."
keywords = ["eliza", "nlp", "weizenbaum", "linguistics", "chatbot"]
categories = ["algorithms", "text-processing"]
readme = "README.md"
include = ["src/**/*", "Cargo.toml", "scripts/doctor.json"]
[[bin]]
name = "eliza"
doc = false
[dependencies]
regex = "^1.3"
rand = "^0.7"
serde = "^1.0"
serde_json = "^1.0"
serde_derive = "^1.0"
log = "^0.4"
env_logger = "^0.7"