-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (30 loc) · 791 Bytes
/
Cargo.toml
File metadata and controls
36 lines (30 loc) · 791 Bytes
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
[package]
name = "eventql-parser"
version = "0.1.15"
authors = ["Yorick Laupa <yo.eight@gmail.com>"]
description = "EventQL Lexer and Parser"
homepage = "https://github.com/YoEight/eventql-parser"
repository = "https://github.com/YoEight/eventql-parser"
documentation = "https://docs.rs/eventql-parser/"
keywords = ["eventql", "lexer", "parser", "events", "event-sourcing"]
license = "MIT"
edition = "2024"
[dependencies]
thiserror = "2"
nom = "8"
nom_locate = "5"
unicase = "2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.ordered-float]
version = "5"
default-features = false
features = ["serde"]
[dependencies.rustc-hash]
version = "2"
default-features = false
features = ["std"]
[dev-dependencies.insta]
version = "1.46"
features = ["yaml", "redactions"]