-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
92 lines (78 loc) · 1.88 KB
/
Cargo.toml
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[package]
name = "maddie-wtf"
version = "0.1.1"
edition = "2021"
publish = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/maddiemort/maddie-wtf"
[dependencies]
axum = "0.7.4"
axum-tracing-opentelemetry = "0.16.0"
camino = "1.1.6"
cfg-if = "1.0.0"
comrak = "0.21.0"
dotenv = "0.15.0"
either = "1.11.0"
ignore = "0.4.22"
init-tracing-opentelemetry = "0.16.0"
lazy_static = "1.4.0"
notify = "6.1.1"
notify-debouncer-mini = "0.4.1"
syntect = "5.2.0"
tap = "1.0.1"
thiserror = "1.0.56"
toml = "0.8.10"
tower = "0.4.13"
tower-livereload = "0.9.2"
tracing = "0.1.40"
[dependencies.tokio]
version = "1.36.0"
features = ["full"]
[dependencies.tracing-subscriber]
version = "0.3.18"
features = ["env-filter"]
[dependencies.clap]
version = "4.5.0"
features = ["env"]
[dependencies.chrono]
version = "0.4.34"
features = ["serde"]
[dependencies.maud]
version = "0.26.0"
features = ["axum"]
[dependencies.serde]
version = "1.0.196"
features = ["derive"]
[dependencies.tower-http]
version = "0.5.1"
features = ["fs"]
[dependencies.uuid]
version = "1.7.0"
features = ["v4"]
[build-dependencies]
grass = "0.13.2"
grass_compiler = "0.13.2"
thiserror = "1.0.56"
[build-dependencies.built]
version = "0.7.2"
features = ["git2"]
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.21.0"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = ["shell"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu"]
# Path that installers should place binaries in
install-path = "CARGO_HOME"
# Whether to install an updater program
install-updater = false
[package.metadata.dist]
dist = true