rsnext/packages/next-swc/crates/next-dev/Cargo.toml
Tobias Koppers 878dd09578 improve visualization
make TransientValue functional
make console-subscriber an optional feature
avoid cloning when calling a function
capture timings of task executions
fix LazyAsset
expose graph from dev server
2022-07-08 14:52:28 +02:00

31 lines
924 B
TOML

[package]
name = "next-dev"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "next-dev"
path = "src/main.rs"
bench = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
tokio_console = ["dep:console-subscriber", "tokio/tracing", "turbo-tasks/tokio_tracing"]
[dependencies]
clap = { version = "3.1.3", features = ["derive"] }
turbo-tasks = { path = "../turbo-tasks" }
turbo-tasks-memory = { path = "../turbo-tasks-memory" }
turbo-tasks-fs = { path = "../turbo-tasks-fs" }
turbopack = { path = "../turbopack" }
turbopack-core = { path = "../turbopack-core" }
turbopack-dev-server = { path = "../turbopack-dev-server" }
anyhow = "1.0.47"
tokio = { version = "1.11.0", features = ["full"] }
json = "0.12.4"
serde = "1.0.136"
console-subscriber = { version = "0.1.6", optional = true }
[build-dependencies]
turbo-tasks-build = { path = "../turbo-tasks-build" }