DEVELOPMENT ENVIRONMENT

~liljamo/canwa

ref: 45439cc45439d0050fb8dd130f48993bba82574f canwa/Cargo.toml -rw-r--r-- 837 bytes
45439cc4Jonni Liljamo feat: initial version 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
[package]
name = "canwa"
version = "0.1.0"
authors = ["Jonni Liljamo <jonni@liljamo.com"]
edition = "2021"
homepage = "https://liljamo.dev/canwa"
license = "GPL-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 = "0.12"
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"