forked from gluon-lang/gluon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (26 loc) · 872 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 = "gluon_base"
version = "0.7.0" # GLUON
authors = ["Markus <[email protected]>"]
license = "MIT"
description = "Basic type definitions and functions for the gluon programming language"
repository = "https://github.com/gluon-lang/gluon"
documentation = "https://docs.rs/gluon"
[dependencies]
log = "0.3.6"
quick-error = "1.0.0"
fnv = "1.0.3"
pretty = "0.3.2"
smallvec = "0.2.1"
collect-mac = "0.1.0"
anymap = "0.12.0"
itertools = "0.7.0"
ordered-float = "0.5.0"
serde = { version = "1.0.0", features = ["rc"], optional = true }
serde_state = { version = "0.4.0", features = ["rc"], optional = true }
serde_derive = { version = "1.0.0", optional = true }
serde_derive_state = { version = "0.4.0", optional = true }
[dev-dependencies]
pretty_assertions = "0.4"
[features]
serialization = ["serde", "serde_state", "serde_derive", "serde_derive_state"]