Skip to main content
Module

x/aleph/compiler/Cargo.toml

The Full-stack Framework in Deno.
Go to Latest
File
[package]name = "aleph-compiler"version = "0.3.0"description = "The compiler of Aleph.js written in rust and powered by swc."repository = "https://github.com/alephjs/aleph.js"authors = ["The Aleph.js authors"]license = "MIT"edition = "2018"
[lib]crate-type = ["cdylib", "rlib"]
[features]default = ["console_error_panic_hook"]
[dependencies]anyhow = "1.0.43"base64 = "0.13.0"indexmap = "1.7.0"lazy_static = "1.4.0"path-slash = "0.1.4"pathdiff = "0.2.0"regex = "1.5.4"relative-path = "1.5.0"sha-1 = "0.9.8"serde = { version = "1.0.130", features = ["derive"] }url = "2.2.2"
# swc# docs: https://swc.rs# crate: https://crates.io/search?q=swcswc_atoms = "0.2.7"swc_common = { version = "0.12.1", features = ["sourcemap"] }swc_ecmascript = { version = "0.63.1", features = ["codegen", "parser", "react", "transforms", "visit"] }swc_ecma_transforms_proposal = "0.38.1"swc_ecma_transforms_typescript = "0.40.3"swc_ecma_ast = "0.52.0"swc_ecma_visit = "0.38.1"swc_ecma_utils = "0.44.2"
# wasm-bindgen# docs: https://rustwasm.github.io/docs/wasm-bindgenwasm-bindgen = {version = "0.2.76", features = ["serde-serialize"]}console_error_panic_hook = { version = "0.1.6", optional = true }
[profile.release]# Tell `rustc` to optimize for speed and sizelto = true