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.0.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.7"serde = { version = "1.0.129", 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.11.7", features = ["sourcemap"] }swc_ecmascript = { version = "0.58.0", features = ["codegen", "parser", "react", "transforms", "visit"] }swc_ecma_transforms_proposal = "0.34.0"swc_ecma_transforms_typescript = "0.36.0"swc_ecma_ast = "0.49.5"swc_ecma_visit = "0.35.2"swc_ecma_utils = "0.41.4"
# 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