-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (27 loc) · 1.24 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
[package]
name = "Mod"
description = "A RIIR for Maude's state-of-the-art pattern matching algorithms"
authors = ["Robert Jacobson <[email protected]"]
version = "0.1.0"
edition = "2021"
repository = "https://www.github.com/rljacobson/Mod"
license = "LGPL-3.0-or-later"
readme = "README.md"
keywords = ["pattern-matching", "matching-algorithms", "unification", "term-rewriting", "equational-logic"]
categories = ["algorithms", "compilers", "mathematics", "science", "parsing"]
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bit-set = "0.5.3" # Implements NatSet
string_cache = "0.8.7" # String interning
shared_vector = "0.4.4" # Rc<Vec<T>> type
pratt = { path = "../pratt" }
tiny_logger = { path = "../tiny_logger" }
unicode-blocks = "0.1.6" # Greek Unicode characters
simple-error = "0.3.0" # Minimal error handling
yansi = "0.5.1" # Colored terminal output
#once_cell = "1.17.1" # Initialize static members
#lazy_static = "1.4.0" # Initialize static members
## AUC Theory
#intrusive-collections = "0.9.4" # For Red-Black Trees
#diophantine = {path = "../diophantine"} # System of linear Diophantine equations solver