2023-06-29 04:45:45 +03:00
|
|
|
[package]
|
|
|
|
edition = "2021"
|
2024-05-16 12:49:23 +03:00
|
|
|
name = "affine_server_native"
|
|
|
|
version = "1.0.0"
|
2023-06-29 04:45:45 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2024-11-18 16:18:16 +03:00
|
|
|
affine_common = { workspace = true }
|
|
|
|
chrono = { workspace = true }
|
|
|
|
file-format = { workspace = true }
|
|
|
|
napi = { workspace = true }
|
|
|
|
napi-derive = { workspace = true }
|
|
|
|
rand = { workspace = true }
|
|
|
|
sha3 = { workspace = true }
|
|
|
|
tiktoken-rs = { workspace = true }
|
|
|
|
v_htmlescape = { workspace = true }
|
|
|
|
y-octo = { workspace = true }
|
2023-10-18 11:06:07 +03:00
|
|
|
|
2024-05-16 10:55:10 +03:00
|
|
|
[target.'cfg(not(target_os = "linux"))'.dependencies]
|
|
|
|
mimalloc = { workspace = true }
|
|
|
|
|
|
|
|
[target.'cfg(all(target_os = "linux", not(target_arch = "arm")))'.dependencies]
|
|
|
|
mimalloc = { workspace = true, features = ["local_dynamic_tls"] }
|
|
|
|
|
2023-10-18 11:06:07 +03:00
|
|
|
[dev-dependencies]
|
2024-11-14 13:22:38 +03:00
|
|
|
rayon = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
2023-06-29 04:45:45 +03:00
|
|
|
|
|
|
|
[build-dependencies]
|
2024-05-16 12:49:23 +03:00
|
|
|
napi-build = { workspace = true }
|