-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 1.25 KB
/
Cargo.toml
File metadata and controls
26 lines (24 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "tryx"
version = "0.6.3"
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "tryx"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.28.0", features = ["extension-module"] }
whatsapp-rust = { path = "libs/whatsapp-rust", default-features = false, features = ["moka-cache", "sqlite-storage", "tokio-transport", "tokio-runtime", "ureq-client", "tokio-native", "signal"] }
whatsapp-rust-sqlite-storage = {path = "libs/whatsapp-rust/storages/sqlite-storage"}
whatsapp-rust-tokio-transport = {path = "libs/whatsapp-rust/transports/tokio-transport"}
whatsapp-rust-ureq-http-client = {path = "libs/whatsapp-rust/http_clients/ureq-client"}
wacore = { path = "libs/whatsapp-rust/wacore", default-features = false }
waproto = {path = "libs/whatsapp-rust/waproto"}
wacore-binary = { path = "libs/whatsapp-rust/wacore/binary", default-features = false }
tokio = { version = "1.48", features = ["macros", "rt-multi-thread", "signal", "sync"] }
async-trait = "0.1.89"
pyo3-async-runtimes = { version = "0.28.0", features = ["attributes", "tokio-runtime"] }
prost = "0.14.3"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "fmt"] }
chrono = "0.4.44"