codemp/Cargo.toml

89 lines
2.4 KiB
TOML
Raw Permalink Normal View History

2022-07-10 19:01:56 +02:00
[package]
name = "codemp"
2024-09-05 03:09:01 +02:00
description = "codemp -- code multiplexer"
2024-09-07 22:10:47 +02:00
homepage = "https://code.mp"
repository = "https://github.com/hexedtech/codemp"
2024-09-05 03:09:01 +02:00
authors = [
"alemi <me@alemi.dev>",
"zaaarf <me@zaaarf.foo>",
"frelodev <frelodev@gmail.com>",
"cschen <cschen@codemp.dev>"
]
license = "GPL-3.0-only"
2022-07-10 19:01:56 +02:00
edition = "2021"
2024-10-20 18:33:36 +02:00
version = "0.8.1"
exclude = ["dist/*"]
2022-07-10 19:01:56 +02:00
[lib]
2023-04-10 20:25:47 +02:00
name = "codemp"
2024-09-21 11:52:46 +02:00
crate-type = ["cdylib", "rlib"]
2022-07-10 19:01:56 +02:00
[dependencies]
2023-04-11 14:02:03 +02:00
# core
tracing = "0.1"
2024-08-10 16:13:44 +02:00
thiserror = "1.0"
# crdt
diamond-types = "1.0"
# proto
2024-09-05 03:10:32 +02:00
codemp-proto = "0.7"
uuid = { version = "1.10", features = ["v4"] }
2024-08-21 21:40:17 +02:00
tonic = { version = "0.12", features = ["tls", "tls-roots"] }
# api
tokio = { version = "1.40", features = ["macros", "rt-multi-thread", "sync"] }
xxhash-rust = { version = "0.8", features = ["xxh3"] }
# client
2024-08-10 16:13:44 +02:00
tokio-stream = "0.1"
dashmap = "6.1"
# glue (multiple)
2024-08-09 00:53:06 +02:00
tracing-subscriber = { version = "0.3", optional = true }
# glue (java)
lazy_static = { version = "1.5", optional = true }
2024-08-09 00:53:06 +02:00
jni = { version = "0.21", features = ["invocation"], optional = true }
2024-10-10 02:12:51 +02:00
jni-toolbox = { version = "0.2", optional = true, features = ["uuid"] }
# glue (lua)
mlua-codemp-patch = { version = "0.10.0-beta.2", features = ["module", "send", "serialize"], optional = true }
2024-03-10 12:42:56 +01:00
# glue (js)
napi = { version = "2.16", features = ["full"], optional = true }
napi-derive = { version="2.16", optional = true}
# glue (python)
pyo3 = { version = "0.22", features = ["extension-module", "multiple-pymethods"], optional = true}
# extra
async-trait = { version = "0.1", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
2024-03-09 23:27:08 +01:00
[build-dependencies]
2024-03-10 12:42:56 +01:00
# glue (js)
napi-build = { version = "2.1", optional = true }
# glue (python)
pyo3-build-config = { version = "0.22", optional = true }
2024-03-09 23:27:08 +01:00
[features]
default = []
# extra
async-trait = ["dep:async-trait"]
serialize = ["dep:serde", "uuid/serde"]
# ffi
2024-09-22 02:22:51 +02:00
java = ["lazy_static", "jni", "tracing-subscriber", "jni-toolbox"]
2024-08-09 00:49:31 +02:00
js = ["napi-build", "tracing-subscriber", "napi", "napi-derive"]
py-noabi = ["pyo3", "tracing-subscriber", "pyo3-build-config"]
py = ["py-noabi", "pyo3/abi3-py38"]
lua = ["mlua-codemp-patch", "tracing-subscriber", "lazy_static", "serialize"]
lua54 =["lua", "mlua-codemp-patch/lua54"]
luajit = ["lua", "mlua-codemp-patch/luajit"]
2024-09-05 03:05:22 +02:00
[package.metadata.docs.rs] # enabled features when building on docs.rs
features = ["serialize"]
[profile.release]
opt-level = 'z'
lto = true
codegen-units = 1
strip = 'symbols'