2022-07-10 19:01:56 +02:00
|
|
|
[package]
|
|
|
|
name = "codemp"
|
2024-08-28 15:23:58 +02:00
|
|
|
version = "0.7.0"
|
2022-07-10 19:01:56 +02:00
|
|
|
edition = "2021"
|
|
|
|
|
2022-10-18 02:19:15 +02:00
|
|
|
[lib]
|
2023-04-10 20:25:47 +02:00
|
|
|
name = "codemp"
|
2024-03-10 02:18:54 +01:00
|
|
|
crate-type = ["cdylib"]
|
2022-07-10 19:01:56 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2023-04-11 14:02:03 +02:00
|
|
|
# core
|
2022-07-30 03:02:38 +02:00
|
|
|
tracing = "0.1"
|
2024-08-10 16:13:44 +02:00
|
|
|
thiserror = "1.0"
|
|
|
|
async-trait = "0.1"
|
2024-08-14 00:24:32 +02:00
|
|
|
# crdt
|
|
|
|
diamond-types = "1.0"
|
2023-09-10 03:40:31 +02:00
|
|
|
# proto
|
2024-08-28 15:23:58 +02:00
|
|
|
codemp-proto = { git = "ssh://git@github.com/hexedtech/codemp-proto.git", tag = "v0.7.0" }
|
2024-03-09 19:59:36 +01:00
|
|
|
uuid = { version = "1.7", features = ["v4"] }
|
2024-08-21 21:40:17 +02:00
|
|
|
tonic = { version = "0.12", features = ["tls", "tls-roots"] }
|
2023-09-10 03:40:31 +02:00
|
|
|
# api
|
2024-03-09 19:59:36 +01:00
|
|
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "sync"] }
|
2024-08-14 00:24:32 +02:00
|
|
|
xxhash-rust = { version = "0.8", features = ["xxh3"] }
|
2023-09-10 03:40:31 +02:00
|
|
|
# client
|
2024-08-10 16:13:44 +02:00
|
|
|
tokio-stream = "0.1"
|
|
|
|
dashmap = "5.5"
|
2024-08-05 22:44:46 +02:00
|
|
|
|
2024-03-10 02:18:54 +01:00
|
|
|
# glue (multiple)
|
2024-08-09 00:53:06 +02:00
|
|
|
tracing-subscriber = { version = "0.3", optional = true }
|
2024-08-05 22:44:46 +02:00
|
|
|
|
2024-03-10 02:18:54 +01:00
|
|
|
# glue (java)
|
2024-08-17 00:06:57 +02:00
|
|
|
lazy_static = { version = "1.4", optional = true }
|
2024-08-09 00:53:06 +02:00
|
|
|
jni = { version = "0.21", features = ["invocation"], optional = true }
|
2024-08-07 00:00:24 +02:00
|
|
|
|
2024-03-10 02:18:54 +01:00
|
|
|
# glue (lua)
|
2024-08-15 22:19:08 +02:00
|
|
|
mlua = { version = "0.10.0-beta.1", features = ["module", "luajit", "send"], optional = true }
|
2024-08-05 22:44:46 +02:00
|
|
|
|
2024-03-10 12:42:56 +01:00
|
|
|
# glue (js)
|
2024-08-07 23:06:33 +02:00
|
|
|
napi = { version = "2.16", features = ["full"], optional = true }
|
|
|
|
napi-derive = { version="2.16", optional = true}
|
2024-08-05 22:44:46 +02:00
|
|
|
|
2024-03-16 14:36:41 +01:00
|
|
|
# glue (python)
|
2024-08-16 12:58:43 +02:00
|
|
|
pyo3 = { version = "0.22", features = ["extension-module", "experimental-async"], optional = true}
|
2024-08-05 22:44:46 +02:00
|
|
|
|
2024-03-09 23:27:08 +01:00
|
|
|
[build-dependencies]
|
2024-03-10 12:42:56 +01:00
|
|
|
# glue (js)
|
|
|
|
napi-build = { version = "2", optional = true }
|
2024-03-16 14:36:41 +01:00
|
|
|
# glue (python)
|
2024-08-09 00:53:06 +02:00
|
|
|
pyo3-build-config = { version = "0.19", optional = true }
|
2024-03-09 23:27:08 +01:00
|
|
|
|
|
|
|
[features]
|
2024-08-13 17:59:58 +02:00
|
|
|
default = []
|
2024-08-17 18:38:37 +02:00
|
|
|
rust = [] # used for ci matrix
|
2024-08-17 00:06:57 +02:00
|
|
|
lua = ["mlua", "tracing-subscriber"]
|
2024-08-06 23:00:04 +02:00
|
|
|
java = ["lazy_static", "jni", "tracing-subscriber"]
|
2024-08-09 00:49:31 +02:00
|
|
|
js = ["napi-build", "tracing-subscriber", "napi", "napi-derive"]
|
2024-08-16 12:58:43 +02:00
|
|
|
python = ["pyo3", "tracing-subscriber", "pyo3-build-config"]
|