-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
71 lines (65 loc) · 2.17 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
[package]
name = "autost"
version = "1.0.0"
edition = "2021"
default-run = "autost"
repository = "https://github.com/delan/autost"
authors = ["Delan Azabani <[email protected]>"]
description = "cohost-compatible blog engine and feed reader"
homepage = "https://github.com/delan/autost"
[package.metadata.wix]
upgrade-guid = "6653B1BD-7AAD-48A7-AE48-025289EF12F9"
path-guid = "AF2D9F97-09C2-4296-9950-B486F61F39A3"
license = false
eula = false
[dependencies]
ammonia = "4.0.0"
askama = "0.12.1"
chrono = "0.4.38"
comrak = "0.28.0"
html5ever = "0.27.0"
http = "0.2.12"
jane-eyre = "0.3.0"
markup5ever_rcdom = "0.3.0"
rayon = "1.10.0"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
sha2 = "0.10.8"
tokio = { version = "1.40.0", features = ["full"] }
toml = "0.8.19"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
url = "2.5.2"
urlencoding = "2.1.3"
uuid = { version = "1.10.0", features = ["v4"] }
warp = "0.3.7"
xml5ever = "0.18.1"
[dependencies.reqwest]
version = "0.12.7"
default-features = false
# default features, minus default-tls, plus rustls-tls + blocking + json
features = ["rustls-tls", "blocking", "json", "charset", "http2", "macos-system-configuration"]
[profile.release]
debug = "line-tables-only"
# 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.22.1"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = ["shell", "powershell", "npm", "homebrew", "msi"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"]
# The archive format to use for windows builds (defaults .zip)
windows-archive = ".tar.gz"
# The archive format to use for non-windows builds (defaults .tar.xz)
unix-archive = ".tar.gz"
# Path that installers should place binaries in
install-path = "CARGO_HOME"
# Whether to install an updater program
install-updater = true