-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (69 loc) · 1.92 KB
/
Cargo.toml
File metadata and controls
74 lines (69 loc) · 1.92 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 = "1.0.0"
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.6.0", features = ["derive"] }
cliclack = "=0.5.4"
console = "=0.16.3"
ctrlc = "=3.5.2"
ecmascript_atomics = { version = "=0.2.3" }
fast-float = "=0.2.0"
hashbrown = "=0.17.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.7.1", features = ["fancy"] }
oxc_allocator = "=0.124.0"
oxc_ast = "=0.124.0"
oxc_diagnostics = "=0.124.0"
oxc_ecmascript = "=0.124.0"
oxc_parser = "=0.124.0"
oxc_regular_expression = "=0.124.0"
oxc_semantic = "=0.124.0"
oxc_span = "=0.124.0"
oxc_syntax = "=0.124.0"
rand = "=0.10.1"
regex = "=1.12.3"
ryu-js = "=1.0.2"
soavec = "=0.2.0"
soavec_derive = "=0.2.0"
sonic-rs = "=0.5.8"
unicode-normalization = "=0.1.25"
usdt = "=0.6.0"
wtf8 = "=0.1.0"
xsum = "=0.1.6"
temporal_rs = "=0.2.3"
[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"