mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-06-01 03:42:11 +00:00
17 lines
460 B
TOML
17 lines
460 B
TOML
[package]
|
|
name = "tgi"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
name = "tgi"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
pyo3 = { version = "0.20.0", features = ["extension-module"] }
|
|
pyo3-asyncio = { version = "0.20.0", features = ["tokio-runtime"] }
|
|
tokio = "1.4"
|
|
text-generation-router = { path = "../router" }
|
|
text-generation-launcher = { path = "../launcher" }
|