csci8980-f23/bidir/Cargo.toml

38 lines
818 B
TOML
Raw Permalink Normal View History

2023-11-02 04:46:22 +00:00
[package]
name = "bidir"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-11-07 08:50:06 +00:00
anyhow = { version = "1.0.75", features = ["backtrace"] }
2023-11-13 15:27:20 +00:00
contracts = { version = "0.6.3" }
2023-11-04 18:49:54 +00:00
dashmap = "5.5.3"
2023-11-30 02:54:43 +00:00
derivative = "2.2.0"
2023-11-07 07:33:59 +00:00
env_logger = "0.10.0"
2023-11-02 04:46:22 +00:00
im = "15.1.0"
2023-11-04 19:33:21 +00:00
lalrpop-util = { version = "0.20.0", features = ["lexer", "regex", "unicode"] }
2023-11-02 04:46:22 +00:00
lazy_static = "1.4.0"
2023-11-13 15:27:20 +00:00
leptos_reactive = "0.5.2"
2023-11-04 19:33:21 +00:00
rustyline = "12.0.0"
trace = "0.1.7"
2023-11-07 07:33:59 +00:00
tracing = "0.1.40"
2023-11-07 08:50:06 +00:00
tracing-subscriber = { version = "0.3.17", features = [
"env-filter",
"json",
"regex",
"serde",
"time",
"tracing",
] }
2023-11-04 19:33:21 +00:00
[build-dependencies]
lalrpop = "0.20.0"
2023-11-07 07:33:59 +00:00
[dev-dependencies]
test-log = { version = "0.2.13", features = ["trace"] }
2023-11-07 08:50:06 +00:00
[features]
trace_execution = []