33 lines
978 B
TOML
33 lines
978 B
TOML
[package]
|
|
name = "tabby"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
axum = "0.6"
|
|
hyper = { version = "0.14", features = ["full"] }
|
|
tokio = { version = "1.17", features = ["full"] }
|
|
tower = "0.4"
|
|
utoipa = { version = "3.3", features = ["axum_extras", "preserve_order"] }
|
|
utoipa-swagger-ui = { version = "3.1", features = ["axum"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
env_logger = "0.10.0"
|
|
log = "0.4"
|
|
ctranslate2-bindings = { path = "../ctranslate2-bindings" }
|
|
tower-http = { version = "0.4.0", features = ["cors"] }
|
|
clap = { version = "4.3.0", features = ["derive"] }
|
|
regex = "1.8.3"
|
|
lazy_static = "1.4.0"
|
|
|
|
[dependencies.uuid]
|
|
version = "1.3.3"
|
|
features = [
|
|
"v4", # Lets you generate random UUIDs
|
|
"fast-rng", # Use a faster (but still sufficiently random) RNG
|
|
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
|
|
]
|
|
|
|
[features]
|
|
link_shared = [ "ctranslate2-bindings/link_shared" ]
|