-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (40 loc) · 1.15 KB
/
Cargo.toml
File metadata and controls
46 lines (40 loc) · 1.15 KB
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
[package]
name = "forwarder"
version = "0.2.0"
authors = ["Matthias <matthias-endler@gmx.net>"]
edition = "2021"
description = "Forwarder for MP3 files in podcast feeds"
license = "Apache-2.0/MIT"
repository = "https://github.com/openpodcast/forwarder"
keywords = [
"podcast",
"forwarder",
"rss",
"feed"
]
categories = ["multimedia::audio"]
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = ["console_error_panic_hook"]
[dependencies]
cfg-if = "1.0.0"
worker = "0.0.10"
# The `console_error_panic_hook` crate provides better debugging of panics by
# logging them with `console.error`. This is great for development, but requires
# all the `std::fmt` and `std::panicking` infrastructure, so isn't great for
# code size when deploying.
console_error_panic_hook = { version = "0.1.7", optional = true }
regex = "1.6.0"
url = "2.2.2"
once_cell = "1.13.1"
urlencoding = "2.1.0"
html-escape = "0.2.11"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = {version = "0.11.12", features = ["json"] }
[profile.release]
# Tell `rustc` to optimize for small code size.
opt-level = "s"
[dev-dependencies]
pretty_assertions = "1.2.1"