Skip to main content
Go to Latest
File
[package]name = "aleph-compiler"version = "0.6.4"description = "The compiler of Aleph.js written in Rust."repository = "https://github.com/alephjs/aleph.js"authors = ["The Aleph.js authors"]license = "MIT"edition = "2021"
[lib]crate-type = ["cdylib", "rlib"]
[dependencies]anyhow = "1.0.58"base64 = "0.13.0"import_map = "0.11.0"lazy_static = "1.4.0"path-slash = "0.1.4"pathdiff = "0.2.1"regex = "1.5.6"serde = { version = "1.0.137", features = ["derive"] }serde_json = "1.0.81"url = "2.2.2"
# parcel csscssparser = "0.29.6"parcel_css = "1.0.0-alpha.27"parcel_sourcemap = "2.0.5"
# swc# docs: https://swc.rs# crate: https://crates.io/search?q=swc_ecmascriptswc_atoms = "0.2.12"swc_common = { version = "0.18.9", features = ["sourcemap", "concurrent", "perf"] }swc_ecmascript = { version = "0.165.0", features = ["codegen", "parser", "utils", "visit"] }swc_ecma_transforms = { version = "0.161.0", features = ["proposal", "typescript", "react", "compat", "optimization" ] }swc_ecma_minifier = "0.122.0"
# wasm-bindgen# docs: https://rustwasm.github.io/docs/wasm-bindgenwasm-bindgen = {version = "0.2.81", features = ["serde-serialize"] }console_error_panic_hook = { version = "0.1.7", optional = true }js-sys = "0.3.58"
[features]default = ["console_error_panic_hook"]
[profile.release]# Tell `rustc` to optimize for speed and sizelto = true