[package]
edition = "2024"
name = "typescript"
version = "0.0.2"
authors = ["Rusty TypeScript Team"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "TypeScript compiler and runtime"
readme = "README.md"
license = "MIT"
[lib]
name = "typescript"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[bin]]
name = "test-performance"
path = "src/bin/test-performance.rs"
[[bin]]
name = "test-performance-optimized"
path = "src/bin/test-performance-optimized.rs"
[[test]]
name = "codegen_test"
path = "tests/codegen_test.rs"
[[test]]
name = "debug_lexer_parser"
path = "tests/debug_lexer_parser.rs"
[[test]]
name = "gc_test"
path = "tests/gc_test.rs"
[[test]]
name = "jit_performance"
path = "tests/jit_performance.rs"
[[test]]
name = "jit_test"
path = "tests/jit_test.rs"
[[test]]
name = "language_spec_test"
path = "tests/language_spec_test.rs"
[[test]]
name = "memory_test"
path = "tests/memory_test.rs"
[[test]]
name = "more_syntax"
path = "tests/more_syntax.rs"
[[test]]
name = "napi_module_test"
path = "tests/napi_module_test.rs"
[[test]]
name = "napi_test"
path = "tests/napi_test.rs"
[[test]]
name = "new_features"
path = "tests/new_features.rs"
[[test]]
name = "new_features_tests"
path = "tests/new_features_tests.rs"
[[test]]
name = "performance_benchmark"
path = "tests/performance_benchmark.rs"
[[test]]
name = "platform_test"
path = "tests/platform_test.rs"
[[test]]
name = "runtime_test"
path = "tests/runtime_test.rs"
[[test]]
name = "typescript_features_test"
path = "tests/typescript_features_test.rs"
[[test]]
name = "typescript_tests"
path = "tests/typescript_tests.rs"
[[test]]
name = "vm_test"
path = "tests/vm_test.rs"
[[test]]
name = "webidl_test"
path = "tests/webidl_test.rs"
[dependencies.env_logger]
version = "0.11"
[dependencies.log]
version = "0.4"
[dependencies.num_cpus]
version = "1.16.0"
[dependencies.rand]
version = "0.8"
[dependencies.serde]
version = "1.0"
features = [
"derive",
"derive",
]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10.8"
[dependencies.typescript-ir]
version = "0.0.2"
[dependencies.typescript-types]
version = "0.0.2"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.52"
features = [
"Win32_Foundation",
"Win32_System_LibraryLoader",
]