feat(swc_common): Allow dylib (#2628)

swc_common:
 - Add `dylib` to `crate-type`.
This commit is contained in:
Donny/강동윤 2021-11-02 23:54:20 +09:00 committed by GitHub
parent 74aa0068db
commit 04238d0b93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

2
Cargo.lock generated
View File

@ -2490,7 +2490,7 @@ dependencies = [
[[package]]
name = "swc_common"
version = "0.14.3"
version = "0.14.4"
dependencies = [
"ahash",
"arbitrary",

View File

@ -6,7 +6,10 @@ edition = "2018"
license = "Apache-2.0/MIT"
name = "swc_common"
repository = "https://github.com/swc-project/swc.git"
version = "0.14.3"
version = "0.14.4"
[lib]
crate-type = ["lib", "dylib"]
[features]
concurrent = ["parking_lot"]