-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathCargo.toml
89 lines (78 loc) · 2.35 KB
/
Cargo.toml
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[package]
name = "deno_graph"
version = "0.87.2"
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"]
[workspace.dependencies]
deno_unsync = { version = "0.4.0", default-features = false }
thiserror = "2"
deno_error = "0.5.3"
sys_traits = "0.1.0"
[lib]
name = "deno_graph"
[package.metadata.docs.rs]
all-features = true
[features]
default = ["fast_check", "ecosystem_test"]
fast_check = ["symbols", "deno_ast/transpiling", "twox-hash"]
symbols = ["deno_ast/transforms", "deno_ast/visit", "deno_ast/utils"]
ecosystem_test = []
[[test]]
name = "specs"
path = "tests/specs_test.rs"
harness = false
[[test]]
name = "ecosystem"
path = "tests/ecosystem_test.rs"
harness = false
[dependencies]
async-trait = "0.1.68"
capacity_builder = "0.5.0"
data-url = "0.3.0"
deno_ast = { version = "0.44.0", features = ["dep_analysis", "emit"] }
deno_media_type = { version = "0.2.4", features = ["decoding", "data_url", "module_specifier"] }
deno_unsync.workspace = true
deno_path_util = "0.3.0"
deno_semver = "0.7.1"
encoding_rs = "0.8.33"
futures = "0.3.26"
import_map = "0.21.0"
indexmap = { version = "2", features = ["serde"] }
log = "0.4.20"
monch = "0.5.0"
once_cell = "1.16.0"
parking_lot = "0.12.0"
regex = "1.10.2"
serde = { version = "1.0.130", features = ["derive", "rc"] }
serde_json = { version = "1.0.67", features = ["preserve_order"] }
sha2 = "^0.10.0"
sys_traits.workspace = true
thiserror.workspace = true
deno_error.workspace = true
twox-hash = { version = "1.6.3", optional = true }
url = { version = "2.5.3", features = ["serde"] }
wasm_dep_analyzer = "0.2.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
deno_unsync = { workspace = true, features = ["tokio"] }
[dev-dependencies]
bincode = "1.3.3"
file_test_runner = "0.7.0"
pretty_assertions = "1.0.0"
reqwest = { version = "0.12.4", default-features = false, features = ["http2", "charset", "rustls-tls-webpki-roots"] }
tempfile = "3.4.0"
tokio = { version = "1.10.1", features = ["macros", "rt-multi-thread", "sync"] }
deno_terminal = "0.2.0"
env_logger = "0.11.3"
sys_traits = { workspace = true, features = ["memory"] }
[profile.release]
codegen-units = 1
incremental = true
lto = true
opt-level = "z"