Skip to content

Commit

Permalink
serde feature for swc_estree_ast
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Mar 24, 2023
1 parent 2a1cd12 commit 7b43e8d
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions crates/swc_estree_ast/Cargo.toml
Expand Up @@ -17,9 +17,14 @@ version = "0.19.38"
[lib]
bench = false

[features]
default = ["serde-impl"]
serde-impl = ["serde"]

[dependencies]
better_scoped_tls = { version = "0.1.0", path = "../better_scoped_tls" }
serde = { version = "1", features = ["derive"] }
serde = { version = "1", features = ["derive"], optional = true }
serde_json = "1"
swc_atoms = { version = "0.4.39", path = "../swc_atoms" }
swc_common = { version = "0.29.38", path = "../swc_common" }

swc_atoms = { version = "0.4.39", path = "../swc_atoms" }
swc_common = { version = "0.29.38", path = "../swc_common" }

0 comments on commit 7b43e8d

Please sign in to comment.