forked from SamTV12345/PodFetch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
69 lines (64 loc) · 2.14 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
[package]
name = "podfetch"
version = "0.1.0"
edition = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
built = {version="0.6.0", features=["chrono", "semver"]}
[features]
default = ["sqlite"]
mysql = ["diesel/mysql", "diesel_migrations/mysql", "diesel/mysql_backend"]
postgresql = ["diesel/postgres", "diesel_migrations/postgres", "diesel/chrono", "r2d2_postgres",
"diesel/postgres_backend"]
sqlite = ["diesel/sqlite", "diesel_migrations/sqlite", "libsqlite3-sys", "diesel/returning_clauses_for_sqlite_3_35",
"openssl/vendored"]
[dependencies]
awc = {version="3.1.1", features = ["rustls"]}
rpassword = "7.2.0"
reqwest = { version = "0.11.18", features = ["stream", "json","blocking"] }
tokio-stream = { version = "0.1.14", features = ["sync"] }
actix = "0.13.0"
async-recursion = "1.0.2"
base64 = "0.21.1"
uuid = {version="1.3.1", features = ["v4", "serde"]}
libsqlite3-sys = {version = "0.26.0", features = ["bundled"], optional = true}
r2d2_postgres = {version = "0.18.1", optional = true}
diesel_migrations = "2.0.0"
actix-files = "0.6.2"
actix-web = {version="4.3.0", features=["rustls"]}
jsonwebtoken = {version="8.2.0"}
log = "0.4.18"
futures-util = "0.3.28"
opml = "1.1.5"
rand = "0.8.5"
env_logger = "0.10.0"
chrono = {version = "0.4.23", default-features=false, features = ["serde"]}
actix-web-actors = "4.2.0"
rss = "2.0.2"
frankenstein = "0.25.0"
regex = "1.8.1"
xml-builder = "0.5.2"
diesel = { version = "2.1.0", features = ["chrono", "r2d2"] }
r2d2 = "0.8.10"
utoipa = { version = "3", features = ["actix_extras"] }
futures = "0.3.28"
utoipa-swagger-ui = {version = "3", features = ["actix-web"] }
clokwerk= "0.4.0"
tokio = {version = "1.28.2", features = ["full"]}
serde = "1.0.163"
serde_derive = "1.0.152"
sysinfo = {version = "0.29.0", features = ["serde"]}
fs_extra = "1.3.0"
serde_json = "1.0.93"
dotenv = "0.15.0"
sha1 = "0.10.5"
sha256 = "1.1.3"
deunicode = "1.3.3"
strfmt="0.2.4"
urlencoding="2.1.2"
[target.'cfg(not(windows))'.dependencies]
openssl = "0.10.52"
[profile.release]
strip = true # Automatically strip symbols from the binary.
lto = "thin"