DEVELOPMENT ENVIRONMENT

~liljamo/canwa

ref: f07712ffc5f21bd3755ef74dfe5d5dd467e620aa canwa/Cargo.toml -rw-r--r-- 1000 bytes
f07712ffJonni Liljamo feat: nix updates, package and module 20 hours 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
[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", features = ["derive"] }
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 = ["full"] }
tower-http = { version = "0.6", features = ["trace"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
typetag = "0.2"