techne 0.1.0-dev.2

A simple MCP implementation for Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "techne"
version = "0.1.0-dev.2"
authors = ["Héctor Ramón Jiménez <hector@hecrj.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple MCP implementation for Rust"
readme = "README.md"
license = "MIT"
repository = "https://github.com/hecrj/techne"

[features]
client = ["dep:techne-client"]
default = [
    "client",
    "server",
    "http",
]
http = [
    "techne-client?/http",
    "techne-server?/http",
]
server = ["dep:techne-server"]

[lib]
name = "techne"
path = "src/lib.rs"

[[example]]
name = "client"
path = "examples/client.rs"

[[example]]
name = "server"
path = "examples/server.rs"

[dependencies.techne-client]
version = "0.1.0-dev.2"
optional = true

[dependencies.techne-mcp]
version = "0.1.0-dev.2"

[dependencies.techne-server]
version = "0.1.0-dev.2"
optional = true

[dev-dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt",
    "rt-multi-thread",
]

[dev-dependencies.tracing-subscriber]
version = "0.3"