forked from denoland/deno_graph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 1002 Bytes
/
Cargo.toml
File metadata and controls
41 lines (36 loc) · 1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "deno_graph"
version = "0.43.0"
edition = "2021"
description = "Module graph analysis for deno"
homepage = "https://deno.land/"
repository = "https://github.com/denoland/deno_graph"
documentation = "https://docs.rs/deno_graph"
authors = ["the Deno authors"]
license = "MIT"
[workspace]
members = ["lib"]
[lib]
name = "deno_graph"
[dependencies]
anyhow = "1.0.43"
data-url = "0.2.0"
deno_ast = { version = "0.24.0", features = ["dep_graph", "module_specifier"] }
futures = "0.3.17"
lazy_static = "1.4.0"
monch = "0.4.0"
once_cell = "1.16.0"
parking_lot = "0.12.0"
regex = "1.5.4"
serde = { version = "1.0.130", features = ["derive", "rc"] }
serde_json = { version = "1.0.67", features = ["preserve_order"] }
thiserror = "1.0.24"
url = { version = "2.2.2", features = ["serde"] }
[dev-dependencies]
pretty_assertions = "1.0.0"
tokio = { version = "1.10.1", features = ["macros", "rt-multi-thread"] }
[profile.release]
codegen-units = 1
incremental = true
lto = true
opt-level = "z"