2024-01-11 10:44:12 +01:00
|
|
|
[package]
|
|
|
|
name = "app"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2024-03-15 19:52:40 +01:00
|
|
|
default-run = "app"
|
2024-01-11 10:44:12 +01:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-21 03:22:46 +01:00
|
|
|
ariadne = "0.4"
|
2024-01-12 09:31:48 +01:00
|
|
|
clap = { workspace = true, features = [ "derive", "env" ] }
|
2024-01-21 03:22:46 +01:00
|
|
|
dirs = "5"
|
|
|
|
eval = { path = "../eval" }
|
|
|
|
ir = { path = "../ir" }
|
2024-02-19 18:07:09 +01:00
|
|
|
prowocessing = { path = "../prowocessing"}
|
2024-01-21 03:22:46 +01:00
|
|
|
owo-colors = "4"
|
2024-01-12 22:19:37 +01:00
|
|
|
ron = "0.8"
|
2024-01-21 03:22:46 +01:00
|
|
|
serde = { workspace = true, features = [ "derive" ] }
|
2024-01-12 22:19:37 +01:00
|
|
|
serde_json = "1.0"
|
2024-01-12 09:31:48 +01:00
|
|
|
time = { version = "0.3", features = [ "local-offset" ] }
|
2024-01-20 21:32:25 +01:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|