2024-03-08 12:34:09 +01:00
|
|
|
[package]
|
|
|
|
name = "lang"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
logos = "0.14"
|
2024-04-03 00:08:00 +02:00
|
|
|
petgraph = { workspace = true}
|
|
|
|
indexmap = "2.2.6"
|
|
|
|
clap = { version = "4", features = ["derive"] }
|
2024-04-03 17:00:20 +02:00
|
|
|
ariadne = "0.4.0"
|
2024-04-11 03:23:03 +02:00
|
|
|
ego-tree = "0.6.2"
|
|
|
|
rowan = "0.15.15"
|
2024-04-24 11:07:38 +02:00
|
|
|
drop_bomb = "0.1.5"
|
|
|
|
enumset = "1.1.3"
|
2024-04-24 21:09:55 +02:00
|
|
|
indoc = "2"
|
2024-06-10 09:47:48 +02:00
|
|
|
dashmap = "5.5.3"
|
|
|
|
crossbeam = "0.8.4"
|
2024-05-04 22:35:18 +02:00
|
|
|
owo-colors = {version = "4", features = ["supports-colors"]}
|
2024-07-06 21:57:42 +02:00
|
|
|
strip-ansi-escapes = "0.2.0"
|
2024-03-08 12:34:09 +01:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|