19fc7cddf1
* Part 1: define ValueTypeSet. We're going to use this instead of `HashSet<ValueType>` so that we can clearly express the empty set and the set of all types, and also to encapsulate a switch to `EnumSet`." * Part 2: use ValueTypeSet. * Part 3: fix type expansion. * Part 4: add a test for type extraction from nested `or`. * Review comments. * Review comments: simplify ValueTypeSet.
13 lines
238 B
TOML
13 lines
238 B
TOML
[package]
|
|
name = "mentat_core"
|
|
version = "0.0.1"
|
|
workspace = ".."
|
|
|
|
[dependencies]
|
|
enum-set = { git = "https://github.com/rnewman/enum-set" }
|
|
lazy_static = "0.2.2"
|
|
num = "0.1.35"
|
|
ordered-float = "0.4.0"
|
|
|
|
[dependencies.edn]
|
|
path = "../edn"
|