[package]
edition = "2021"
name = "harn-hostlib"
version = "0.7.39"
build = false
include = [
"src/**/*",
"schemas/**/*",
"tests/**/*",
"Cargo.toml",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Opt-in code-intelligence and deterministic-tool host builtins for the Harn VM"
homepage = "https://harnlang.com/"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/burin-labs/harn"
[lib]
name = "harn_hostlib"
path = "src/lib.rs"
[[test]]
name = "registration"
path = "tests/registration.rs"
[[test]]
name = "smoke_harn_script"
path = "tests/smoke_harn_script.rs"
[[test]]
name = "tools_file_io"
path = "tests/tools_file_io.rs"
[[test]]
name = "tools_git"
path = "tests/tools_git.rs"
[[test]]
name = "tools_outline"
path = "tests/tools_outline.rs"
[[test]]
name = "tools_search"
path = "tests/tools_search.rs"
[dependencies.anyhow]
version = "1"
[dependencies.base64]
version = "0.22"
[dependencies.grep-matcher]
version = "0.1"
[dependencies.grep-regex]
version = "0.1"
[dependencies.grep-searcher]
version = "0.1"
[dependencies.harn-vm]
version = "0.7"
[dependencies.ignore]
version = "0.4"
[dependencies.notify]
version = "8"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
"sync",
"fs",
"process",
"time",
]
[dependencies.tree-sitter]
version = "0.26"
[dependencies.walkdir]
version = "2"
[dev-dependencies.harn-lexer]
version = "0.7"
[dev-dependencies.harn-parser]
version = "0.7"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"