2023-08-17 18:39:47 +02:00
|
|
|
[package]
|
|
|
|
name = "CodempClient-Sublime"
|
2024-03-16 15:51:49 +01:00
|
|
|
version = "0.6.1"
|
2023-08-17 18:39:47 +02:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
|
|
name = "codemp_client"
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2024-03-16 12:49:07 +01:00
|
|
|
codemp = { git = "ssh://git@github.com/codewithotherpeopleandchangenamelater/codemp.git", tag="v0.6.1"}
|
|
|
|
codemp-proto = { git = "ssh://git@github.com/codewithotherpeopleandchangenamelater/codemp-proto.git", tag = "v0.6.1" }
|
2023-11-22 12:29:20 +01:00
|
|
|
pyo3 = { version = "0.20", features = ["extension-module"] }
|
|
|
|
pyo3-asyncio = { version = "0.20", features = ["tokio-runtime"] }
|
2024-02-16 21:46:16 +01:00
|
|
|
serde = { version = "1.0.196", features = ["derive"] }
|
2023-08-17 18:39:47 +02:00
|
|
|
tokio = "1.29.1"
|
2024-03-02 15:28:39 +01:00
|
|
|
tracing = "0.1.40"
|
|
|
|
tracing-subscriber = "0.3.18"
|
2023-08-17 18:39:47 +02:00
|
|
|
|
|
|
|
[build-dependencies]
|
2024-03-16 15:51:49 +01:00
|
|
|
pyo3-build-config = "0.20"
|