-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Merge
hstr
into the main repository (#9963)
- Loading branch information
Showing
17 changed files
with
1,543 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
hstr: patch | ||
swc_atoms: patch | ||
--- | ||
|
||
feat: Merge `hstr` into the main repository |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
[package] | ||
authors = ["강동윤 <[email protected]>"] | ||
description = "A string type which is optimized for hash operations." | ||
edition = { workspace = true } | ||
license = { workspace = true } | ||
name = "hstr" | ||
repository = { workspace = true } | ||
version = "0.2.16" | ||
|
||
[lib] | ||
bench = false | ||
|
||
|
||
[features] | ||
atom_size_128 = [] | ||
atom_size_64 = [] | ||
rkyv = ["dep:rkyv"] | ||
serde = ["dep:serde"] | ||
|
||
[dependencies] | ||
hashbrown = { workspace = true } | ||
new_debug_unreachable = { workspace = true } | ||
once_cell = { workspace = true } | ||
phf = { workspace = true } | ||
rkyv = { workspace = true, optional = true } | ||
rustc-hash = { workspace = true } | ||
serde = { workspace = true, optional = true } | ||
triomphe = { workspace = true } | ||
|
||
|
||
[dev-dependencies] | ||
compact_str = { workspace = true } | ||
criterion = { workspace = true } | ||
kstring = { workspace = true } | ||
num_cpus = { workspace = true } | ||
rand = { workspace = true } | ||
rayon = { workspace = true } | ||
smartstring = { workspace = true } | ||
smol_str = { workspace = true } | ||
string_cache = { workspace = true } | ||
|
||
swc_malloc = { version = "1.0.0", path = "../swc_malloc" } | ||
|
||
[[bench]] | ||
harness = false | ||
name = "libs" |
Oops, something went wrong.