Rename crates to 'tree-house', 'tree-house-bindings'

This commit is contained in:
Michael Davis
2025-02-12 17:52:16 -05:00
parent 067a668e2d
commit 6871cf5810
3 changed files with 28 additions and 28 deletions

42
Cargo.lock generated
View File

@@ -192,26 +192,6 @@ dependencies = [
"foldhash",
]
[[package]]
name = "helix-syntax"
version = "0.1.0"
dependencies = [
"arc-swap",
"cov-mark",
"hashbrown",
"indexmap",
"kstring",
"once_cell",
"pretty_assertions",
"regex",
"regex-cursor 0.1.4",
"ropey",
"skidder",
"slab",
"twig-sitter",
"unicode-width 0.1.12",
]
[[package]]
name = "indexmap"
version = "2.7.1"
@@ -593,7 +573,27 @@ dependencies = [
]
[[package]]
name = "twig-sitter"
name = "tree-house"
version = "0.1.0"
dependencies = [
"arc-swap",
"cov-mark",
"hashbrown",
"indexmap",
"kstring",
"once_cell",
"pretty_assertions",
"regex",
"regex-cursor 0.1.4",
"ropey",
"skidder",
"slab",
"tree-house-bindings",
"unicode-width 0.1.12",
]
[[package]]
name = "tree-house-bindings"
version = "0.1.0"
dependencies = [
"cc",

View File

@@ -1,11 +1,11 @@
[package]
name = "twig-sitter"
description = "Alternative Rust bindings for the tree-sitter C library"
name = "tree-house-bindings"
description = "Homey Rust bindings for the tree-sitter C library"
authors = ["Pascal Kuthe <pascalkuthe@pm.me>"]
version = "0.1.0"
edition = "2021"
license = "MPL-2.0"
repository = "https://github.com/helix-editor/nucleo"
repository = "https://github.com/helix-editor/tree-house"
readme = "../README.md"
rust-version = "1.76.0"

View File

@@ -1,6 +1,6 @@
[package]
name = "helix-syntax"
description = "A production ready tree-sitter syntax highlighter, component of the helix-editor"
name = "tree-house"
description = "A robust and cozy highlighter library for tree-sitter"
authors = [
"Pascal Kuthe <pascalkuthe@pm.me>",
"Michael Davis <mcarsondavis@gmail.com>"
@@ -8,7 +8,7 @@ authors = [
version = "0.1.0"
edition = "2021"
license = "MPL-2.0"
repository = "https://github.com/helix-editor/tree-sitter-helix"
repository = "https://github.com/helix-editor/tree-house"
readme = "../README.md"
rust-version = "1.76.0"
@@ -34,7 +34,7 @@ skidder = { path = "../skidder" }
[dependencies.tree-sitter]
version = "0.1.0"
package = "twig-sitter"
package = "tree-house-bindings"
path = "../bindings"
features = ["ropey"]