2023-08-17 18:39:47 +02:00
|
|
|
[package]
|
|
|
|
name = "CodempClient-Sublime"
|
2024-02-24 16:56:22 +01:00
|
|
|
version = "0.4.0"
|
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-02-16 21:46:16 +01:00
|
|
|
codemp = { git = "ssh://git@github.com/codewithotherpeopleandchangenamelater/codemp.git", tag="v0.6.0", features = ["client", "woot"]}
|
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"
|
|
|
|
|
|
|
|
[build-dependencies]
|
2023-08-17 18:57:21 +02:00
|
|
|
pyo3-build-config = "0.19.2"
|