[package]
edition = "2021"
name = "langsmith-rust"
version = "0.1.3"
authors = ["teachmewow"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust crate for manual tracing to LangSmith, providing similar ergonomics to the Python and TypeScript SDKs"
readme = "README.md"
keywords = [
"langsmith",
"tracing",
"observability",
"langchain",
"ai",
]
categories = [
"development-tools",
"web-programming",
]
license = "MIT"
repository = "https://github.com/teachmewow/langsmith-rust"
[lib]
name = "langsmith_rust"
path = "src/lib.rs"
[[example]]
name = "basic_tracing"
path = "examples/basic_tracing.rs"
[[example]]
name = "decorator_example"
path = "examples/decorator_example.rs"
[[example]]
name = "observable_graph"
path = "examples/observable_graph.rs"
[[example]]
name = "test_llm_tracing"
path = "examples/test_llm_tracing.rs"
[[test]]
name = "factories_test"
path = "tests/factories_test.rs"
[[test]]
name = "models_test"
path = "tests/models_test.rs"
[[test]]
name = "strategies_test"
path = "tests/strategies_test.rs"
[[test]]
name = "tracer_test"
path = "tests/tracer_test.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.dotenvy]
version = "0.15"
[dependencies.once_cell]
version = "1.19"
[dependencies.reqwest]
version = "0.11"
features = ["json"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.0"
features = ["full"]
[dependencies.uuid]
version = "1.0"
features = [
"v4",
"serde",
]
[dev-dependencies.tokio-test]
version = "0.4"