[package]
edition = "2024"
rust-version = "1.85.1"
name = "i-ching"
version = "1.0.0"
authors = ["Joe Gracyk <joe@thecolouroutof.space>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "I Ching divination readings for CLI and Goose extension"
homepage = "https://github.com/threemachines/i-ching"
readme = "README.md"
keywords = [
"i-ching",
"iching",
"divination",
"hexagram",
"mcp",
]
categories = [
"command-line-utilities",
"simulation",
"development-tools",
]
license = "MIT"
repository = "https://github.com/threemachines/i-ching"
[lib]
name = "i_ching"
path = "src/lib.rs"
[[bin]]
name = "i-ching"
path = "src/bin/main.rs"
[[bin]]
name = "i-ching-mcp-server"
path = "src/bin/mcp_server.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.0"
features = ["derive"]
[dependencies.jsonrpc-core]
version = "18.0"
[dependencies.jsonrpc-stdio-server]
version = "18.0"
[dependencies.rand]
version = "0.9"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1.0"
features = ["full"]
[dependencies.uuid]
version = "1.0"
[dev-dependencies.pretty_assertions]
version = "1.0"