-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (48 loc) · 1.52 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
50
51
52
53
[package]
name = "bareclad"
version = "0.1.3"
edition = "2021"
authors = ["Lars Rönnbäck <[email protected]>"]
[dependencies]
# chrono provides various data types for time
chrono = "0.4"
# bimap is a bidirectional hashmap, so lookups can be done both from left and right
bimap = "0.6.1"
# typemap holds one value per type of key, useful for Posit<V,T>
typemap = "0.3.3"
# pest is a parser used when parsing Traqula
pest = "2.1.3"
pest_derive = "2.1.0"
# config lets you read a separate config file
config = "0.11"
# the "standard" regular expression package
regex = "1.5.4"
# anyhow provides easy custom error handling
anyhow = "1.0"
# since every posit is a thing in itself we can use bitsets to "join" them
# the "roaring bitmaps" seem to have the best ergonomics
roaring = "0.8.1"
# we will use a fast hashing algo for hashmaps and hashsets where keys are not Things
seahash = "4.1.0"
# rusqlite for the persistence layer
rusqlite = { version = "0.26.3", features = ["chrono", "bundled"] }
# for decimal numbers of arbitrary size
bigdecimal = "0.3.0"
# for JSON data type
jsondata = "0.8.0"
# so regular expressions don't have to be recompiled
lazy_static = "1.4.0"
# ---- THESE MAY BE USED LATER -----
#jql = "3.0.4"
#serde = "1.0.130"
#serde_json = "1.0.72"
#chumsky = "0.7"
# https://play.rust-lang.org/?version=nightly&mode=debug&edition=2021&gist=e93f05c877b6dda664a60cf8015e3d8d
#crossbeam = "0.8.1"
# logos is a lexer used when parsing Traqula
#logos = "0.12"
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "benchmark"
harness = false