-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (69 loc) · 1.97 KB
/
Cargo.toml
File metadata and controls
74 lines (69 loc) · 1.97 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
66
67
68
69
70
71
72
73
74
[workspace]
resolver = "2"
members = ["nova_cli", "nova_vm", "small_string", "tests"]
exclude = ["nova_lint"]
[workspace.package]
edition = "2024"
version = "0.3.1"
license = "MPL-2.0"
homepage = "https://trynova.dev/"
repository = "https://github.com/trynova/nova/"
readme = "README.md"
keywords = ["javascript", "typescript", "interpreter"]
categories = ["development-tools"]
authors = ["The Nova Team"]
[workspace.dependencies]
ahash = "0.8.12"
clap = { version = "4.5.48", features = ["derive"] }
cliclack = "0.3.6"
console = "0.15.11"
ctrlc = "3.5.0"
ecmascript_atomics = { version = "0.2.3" }
ecmascript_futex = { version = "0.1.0" }
fast-float = "0.2.0"
hashbrown = "0.16.0"
lexical = { version = "7.0.5", default-features = false, features = [
"std",
"write-integers",
"write-floats",
"radix",
] }
num-bigint = "0.4.6"
num-traits = "0.2.19"
oxc-miette = { version = "2.5.1", features = ["fancy"] }
oxc_allocator = "0.94.0"
oxc_ast = "0.94.0"
oxc_diagnostics = "0.94.0"
oxc_ecmascript = "0.94.0"
oxc_parser = "0.94.0"
oxc_regular_expression = "0.94.0"
oxc_semantic = "0.94.0"
oxc_span = "0.94.0"
oxc_syntax = "0.94.0"
rand = "0.9.2"
regex = "1.11.3"
ryu-js = "1.0.2"
soavec = "0.2.0"
soavec_derive = "0.2.0"
sonic-rs = "0.3.17"
unicode-normalization = "0.1.24"
usdt = { git = "https://github.com/aapoalas/usdt.git", branch = "nova-aarch64-branch" }
wtf8 = "0.1"
temporal_rs = "0.1.0"
[workspace.metadata.dylint]
libraries = [{ path = "nova_lint" }]
# The release profile, used for `cargo build --release`.
[profile.release]
# Enables "fat" LTO, for faster release builds
lto = "fat"
# Makes sure that all code is compiled together, for LTO
codegen-units = 1
# Strips debug information and symbols from the binary, reducing its size
strip = "symbols"
# This profile has all the same safety checks as dev builds. It trades slightly
# longer compile times for faster runs, which is worth it when running test262.
[profile.dev-fast]
inherits = "dev"
opt-level = 2
lto = "thin"
debug = "limited"