mirror of
https://github.com/danbulant/oxc
synced 2026-05-25 12:51:57 +00:00
## [0.16.1] - 2024-06-29 ### Features -7b38bdeparser: Parse modifiers with `parse_modifiers` (#3948) (DonIsaac) -f64ad4bsemantic: Make jsdoc building optional (turned off by default) (#3955) (Boshen) ### Bug Fixes -51e54f9codegen: Should print `TSModuleDeclarationKind` instead of just `module` (#3957) (Dunqing) -31e4c3bisolated-declarations: `declare global {}` should be kept even if it is not exported (#3956) (Dunqing) ### Refactor -2705df9linter: Improve diagnostic labeling (#3960) (DonIsaac) -15ec254semantic: Remove the unused `Semantic::build2` function (Boshen) Co-authored-by: Boshen <Boshen@users.noreply.github.com>
32 lines
754 B
TOML
32 lines
754 B
TOML
[package]
|
|
name = "oxc_sourcemap"
|
|
version = "0.16.1"
|
|
authors.workspace = true
|
|
description.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
categories.workspace = true
|
|
include = ["/src"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
rustc-hash = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
base64-simd = { workspace = true }
|
|
cfg-if = { workspace = true }
|
|
|
|
rayon = { workspace = true, optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
concurrent = ["dep:rayon"]
|