forked from gluon-lang/gluon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (40 loc) · 1.3 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "gluon_base"
version = "0.18.2" # GLUON
authors = ["Markus <[email protected]>"]
edition = "2018"
license = "MIT"
description = "Basic type definitions and functions for the gluon programming language"
homepage = "https://gluon-lang.org"
repository = "https://github.com/gluon-lang/gluon"
documentation = "https://docs.rs/gluon"
[dependencies]
bitflags = "1.3.2"
hashbrown = "0.11.2"
log = "0.4.20"
quick-error = "2.0.1"
fnv = "1.0.7"
pretty = "0.10.0"
smallvec = "1.11.0"
collect-mac = "0.1.0"
anymap = { version = "0.12.1", optional = true }
itertools = "0.10.5"
ordered-float = "2.10.0"
codespan = "0.11.1"
codespan-reporting = "0.11.1"
either = "1.9.0"
vec_map = "0.8.2"
typed-arena = "2.0.2"
gluon_codegen = { version = "0.18.2", path = "../codegen" } # GLUON
serde = { version = "1.0.188", features = ["rc"], optional = true }
serde_state = { version = "0.4.8", features = ["rc"], optional = true }
serde_derive = { version = "1.0.188", optional = true }
serde_derive_state = { version = "0.4.10", optional = true }
# Crates used in testing
compiletest_rs = { version = "0.7.1", optional = true }
[dev-dependencies]
env_logger = "0.9.3"
pretty_assertions = "1.4.0"
[features]
serialization = ["serde", "serde_state", "serde_derive", "serde_derive_state", "anymap"]
nightly = ["compiletest_rs"]