mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-31 04:09:49 +02:00
38 lines
750 B
TOML
38 lines
750 B
TOML
[package]
|
|
name = "langgraph-cli"
|
|
version = "0.2.10"
|
|
edition = "2021"
|
|
description = "Native CLI for LangGraph"
|
|
license = "MIT"
|
|
|
|
[[bin]]
|
|
name = "langgraph"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "4", features = ["derive"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = { version = "1" }
|
|
reqwest = { version = "0.12", features = ["rustls-tls", "blocking"], default-features = false }
|
|
zip = "2"
|
|
indexmap = { version = "2", features = ["serde"] }
|
|
open = "5"
|
|
indicatif = "0.17"
|
|
console = "0.15"
|
|
dotenvy = "0.15"
|
|
tempfile = "3"
|
|
thiserror = "2"
|
|
dialoguer = "0.11"
|
|
regex = "1"
|
|
which = "7"
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "2"
|
|
predicates = "3"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = "thin"
|
|
codegen-units = 1
|
|
strip = "symbols"
|