add tabby-coreml

support-coreml
Meng Zhang 2023-06-03 11:48:17 -07:00
parent 775576b53e
commit c41506d5e5
3 changed files with 23 additions and 0 deletions

View File

@ -2,6 +2,7 @@
members = [
"crates/tabby",
"crates/tabby-common",
"crates/tabby-coreml",
"crates/ctranslate2-bindings",
"crates/rust-cxx-cmake-bridge",
]

View File

@ -0,0 +1,8 @@
[package]
name = "tabby-coreml"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

@ -0,0 +1,14 @@
pub fn add(left: usize, right: usize) -> usize {
left + right
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn it_works() {
let result = add(2, 2);
assert_eq!(result, 4);
}
}