DEVELOPMENT ENVIRONMENT

~liljamo/canwa

ref: 59fec95b232dd0b1b8348e52c2f31062459a2cba canwa/Cargo.toml -rw-r--r-- 1.1 KiB
59fec95bJonni Liljamo feat: optionally render commonmark to html for matrix 27 days ago
                                                                                
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
36
37
38
39
40
41
42
[package]
name = "canwa"
version = "0.1.0"
authors = ["Jonni Liljamo <jonni@liljamo.com"]
description = "A small API for relaying the same message to multiple services"
edition = "2024"
homepage = "https://liljamo.dev/canwa"
license = "AGPL-3.0-or-later"
publish = false
repository = "https://git.src.quest/~liljamo/canwa"

[dependencies]
async-trait = "0.1"
axum = { version = "0.8", default-features = false, features = [
  "http1",
  "http2",
  "json",
  "tokio",
  "tower-log",
  "tracing",
  "form",
] }
clap = { version = "4", default-features = false, features = [
  "derive",
  "help",
  "std",
] }
pulldown-cmark = { version = "0.13", default-features = false, features = [
  "html",
] }
reqwest = { version = "0.12", default-features = false, features = [
  "http2",
  "rustls-tls",
] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = { version = "0.8", default-features = false, features = ["parse"] }
tokio = { version = "1", features = ["fs", "rt-multi-thread"] }
tower-http = { version = "0.6", features = ["trace"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
typetag = "0.2"