2022-03-21 15:47:35 +01:00
|
|
|
[package]
|
|
|
|
name = "crftng-intrprtrs"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
2022-05-07 20:02:50 +02:00
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"gc"
|
|
|
|
]
|
|
|
|
|
2022-03-21 15:47:35 +01:00
|
|
|
[dependencies]
|
2022-05-16 15:11:41 +02:00
|
|
|
gc = { path = "./gc" }
|
2022-04-19 00:46:33 +02:00
|
|
|
clap = { version = "3.1.9", features = ["derive"] }
|
2022-04-02 21:23:47 +02:00
|
|
|
color-eyre = "0.6.1"
|
2022-03-21 15:47:35 +01:00
|
|
|
dotenv = "0.15.0"
|
2022-04-02 21:23:47 +02:00
|
|
|
from_variants = "1.0.0"
|
2022-04-29 20:00:06 +02:00
|
|
|
itertools = "0.10.3"
|
2022-04-02 21:23:47 +02:00
|
|
|
match_any = "1.0.1"
|
2022-03-21 15:47:35 +01:00
|
|
|
tracing = "0.1.32"
|
|
|
|
tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }
|