2023-05-25 21:05:28 +00:00
|
|
|
[package]
|
|
|
|
|
name = "ctranslate2-bindings"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
cxx = "1.0"
|
2023-06-06 23:28:58 +00:00
|
|
|
dashmap = "5.4.0"
|
2023-05-25 21:05:28 +00:00
|
|
|
derive_builder = "0.12.0"
|
2023-06-06 23:28:58 +00:00
|
|
|
regex = "1.8.4"
|
2023-05-25 21:05:28 +00:00
|
|
|
tokenizers = "0.13.3"
|
2023-06-04 06:23:31 +00:00
|
|
|
tokio = { workspace = true, features = ["rt"] }
|
2023-06-04 22:28:39 +00:00
|
|
|
tokio-util = { workspace = true }
|
2023-05-25 21:05:28 +00:00
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
|
cxx-build = "1.0"
|
2023-05-27 07:05:56 +00:00
|
|
|
cmake = { version = "0.1", optional = true }
|
|
|
|
|
rust-cxx-cmake-bridge = { path = "../rust-cxx-cmake-bridge", optional = true }
|
|
|
|
|
|
|
|
|
|
[features]
|
2023-06-04 22:28:39 +00:00
|
|
|
default = ["dep:cmake", "dep:rust-cxx-cmake-bridge"]
|
2023-05-27 07:05:56 +00:00
|
|
|
link_shared = []
|