forked from owainlewis/push
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 1.07 KB
/
Copy pathCargo.toml
File metadata and controls
35 lines (32 loc) · 1.07 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
27
28
29
30
31
32
33
34
35
[package]
name = "push"
version = "0.8.2"
edition = "2021"
license = "MIT"
description = "A tiny messaging gateway that turns coding agents into a personal assistant you text."
repository = "https://github.com/owainlewis/push"
[[bin]]
name = "push"
path = "src/main.rs"
[dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros", "process", "time", "sync", "signal"] }
tokio-tungstenite = { version = "0.27", default-features = false, features = ["connect", "rustls-tls-webpki-roots"] }
futures-util = { version = "0.3", features = ["sink"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart", "rustls-tls"] }
rusqlite = { version = "0.32", features = ["bundled"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "1"
toml_edit = "0.23"
uuid = { version = "1", features = ["v4"] }
anyhow = "1"
humantime = "2"
sha2 = "0.10"
chrono-tz = "0.10"
chrono = "0.4"
tracing = "0.1"
tracing-subscriber = "0.3"
pulldown-cmark = { version = "0.13", default-features = false }
[profile.release]
strip = true
lto = true