-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (57 loc) · 1.74 KB
/
Cargo.toml
File metadata and controls
65 lines (57 loc) · 1.74 KB
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
[package]
name = "javascript"
version = "0.2.0"
edition = "2024"
authors = ["ssrlive"]
license = "MIT"
description = "A JavaScript engine implementation in Rust"
repository = "https://github.com/ssrlive/javascript"
homepage = "https://crates.io/crates/javascript"
documentation = "https://docs.rs/javascript"
readme = "README.md"
keywords = ["javascript", "js", "engine", "interpreter", "runtime"]
categories = ["development-tools", "parsing"]
[workspace]
members = ["js"]
[features]
default = ["os", "std"]
os = ["libc", "windows-sys"]
std = []
[dependencies]
bitflags = { version = "2.11.1", default-features = false, features = [] }
chrono = { version = "0.4.44", features = ["serde"] }
crossbeam-channel = "0.5.15"
gc-arena = { git = "https://github.com/kyren/gc-arena.git", rev = "75671ae", features = [
"indexmap",
] }
indexmap = "2.14.0"
log = "0.4.29"
num-bigint = "0.4.6"
num-traits = "0.2.19"
regress = { version = "0.11", git = "https://github.com/ridiculousfish/regress.git", rev = "ca8f885", features = [
"utf16",
] }
serde_json = { version = "1.0.149", features = ["preserve_order"] }
temporal_rs = "0.2.3"
thiserror = "2.0.18"
unicode-normalization = "0.1.25"
[target.'cfg(unix)'.dependencies]
libc = { version = "0.2.185", optional = true }
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.61.2", optional = true, features = [
"Win32_System_Threading",
"Win32_System_Diagnostics_ToolHelp",
"Win32_Foundation",
] }
[dev-dependencies]
criterion = { version = "0.8.2", features = ["html_reports"] }
ctor = "0.10.0"
env_logger = { version = "0.11.10" }
[[bench]]
name = "promise_benchmarks"
path = "benches/promise_benchmarks.rs"
harness = false
[[bench]]
name = "bigint_bench"
path = "benches/bigint_bench.rs"
harness = false