DEVELOPMENT ENVIRONMENT

~liljamo/canwa

ref: 5e386562eacb36c1492297fa4e0ff82054d03a33 canwa/Cargo.toml -rw-r--r-- 1.1 KiB
5e386562Jonni Liljamo feat: macro for creating service match 10 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
43
[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",
] }
pastey = "0.2.0"
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"