-
Notifications
You must be signed in to change notification settings - Fork 0
Update rapidhash implementation in thread-utils #45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
4f99332
5a2cf4f
e404851
593dfe4
8c00e51
30acf05
ab3a5a6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -17,21 +17,18 @@ include.workspace = true | |
|
|
||
| # [features] # we need to separate serialization, but that's a big job, and ideally rework ast-engine to allow narrower featuring | ||
|
|
||
| [[bench]] | ||
| harness = false | ||
| name = "simple_benchmarks" | ||
|
|
||
| [[bench]] | ||
| harness = false | ||
| name = "ast_grep_comparison" | ||
|
|
||
| [[bench]] | ||
| harness = false | ||
| name = "rule_engine_benchmarks" | ||
|
|
||
| [[bench]] | ||
| harness = false | ||
| name = "comparison_benchmarks" | ||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
Comment on lines
23
to
+31
|
||
|
|
||
| [dependencies] | ||
| bit-set.workspace = true | ||
|
|
@@ -49,9 +46,9 @@ thread-utils = { workspace = true, default-features = false, features = [ | |
| ] } | ||
|
|
||
| [dev-dependencies] | ||
| ast-grep-config = { version = "0.39.1" } | ||
| ast-grep-core = { version = "0.39.1", features = ["tree-sitter"] } | ||
| ast-grep-language = { version = "0.39.1", features = ["builtin-parser"] } | ||
| # ast-grep-config = { version = "0.39.1" } | ||
| # ast-grep-core = { version = "0.39.1", features = ["tree-sitter"] } | ||
| # ast-grep-language = { version = "0.39.1", features = ["builtin-parser"] } | ||
| criterion = { version = "0.6", features = ["html_reports"] } | ||
| thread-ast-engine = { workspace = true, features = ["matching", "parsing"] } | ||
| thread-language = { workspace = true, features = ["all-parsers"] } | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -5,7 +5,7 @@ | |||||
| [package] | ||||||
| name = "thread-services" | ||||||
| version = "0.1.0" | ||||||
| authors.workspace = true | ||||||
| authors = ["Adam Poulemanos <adam@knit.li>"] | ||||||
|
||||||
| authors = ["Adam Poulemanos <adam@knit.li>"] | |
| authors.workspace = true |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -5,7 +5,7 @@ | |||||
| [package] | ||||||
| name = "thread-utils" | ||||||
| version = "0.0.1" | ||||||
| authors.workspace = true | ||||||
| authors = ["Adam Poulemanos <adam@knit.li>"] | ||||||
|
||||||
| authors = ["Adam Poulemanos <adam@knit.li>"] | |
| authors.workspace = true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
codegen-backend = "cranelift"line has been removed, leaving the[profile.dev-debug]profile essentially empty (it only inherits from "dev" with no additional configuration). Consider removing the entire profile section if it's no longer needed, or add a comment explaining why this profile is being kept as an empty inheritor.