-
Notifications
You must be signed in to change notification settings - Fork 45
/
Cargo.toml
46 lines (37 loc) · 1017 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
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "ketos"
version = "0.12.0"
authors = ["Murarth <murarth@gmail.com>"]
edition = "2018"
description = "Lisp dialect scripting and extension language"
documentation = "https://docs.rs/ketos/"
homepage = "https://github.com/murarth/ketos"
repository = "https://github.com/murarth/ketos"
keywords = [ "scripting", "extension", "functional", "language", "lisp" ]
license = "MIT/Apache-2.0"
readme = "README.md"
[[bin]]
name = "ketos"
path = "src/bin/repl.rs"
doc = false
[lib]
name = "ketos"
path = "src/ketos/lib.rs"
[dependencies]
byteorder = "1.3"
dirs = "2.0"
gumdrop = "0.7"
ketos_derive = { version = "0.12", path = "ketos_derive", optional = true }
linefeed = "0.6"
num = "0.2"
rand = "0.7"
serde = { version = "1.0", optional = true }
# Used only in `tests/value_derive.rs`
serde_derive = { version = "1.0", optional = true }
[dev-dependencies]
assert_matches = "1.0"
ketos_derive = { version = "0.12", path = "ketos_derive" }
[features]
default = []
derive = ["ketos_derive"]
[workspace]