-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
132 lines (129 loc) · 3.59 KB
/
Cargo.toml
File metadata and controls
132 lines (129 loc) · 3.59 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
[package]
name = "cub"
version = "0.1.15"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = [
"aws",
"bitcode",
"dns",
"hetzner",
"hosts",
"jwt",
"linode",
"log",
"oauth",
"stripe",
"time_id",
"videos",
]
aws = [
"anyhow",
"aws-config",
"aws-sdk-apigatewaymanagement",
"aws-sdk-bedrockruntime",
"aws-sdk-dynamodb",
"aws-sdk-s3",
"aws-sdk-translate",
"axum",
"base64",
"futures",
"hyper",
"lambda_runtime",
"pnet",
"serde_dynamo",
"serde_json",
"structopt",
"tokio",
"toml",
"tower-http",
"urlencoding",
]
dns = [
"async-trait",
"aws-sdk-route53",
"axum",
"hyper",
"reqwest",
"serde_json",
"toml",
]
hetzner = []
hosts = ["async-trait", "axum", "hyper", "reqwest", "serde_json", "toml"]
jwt = ["jsonwebtoken", "serde_json", "toml"]
linode = []
log = []
oauth = [
"async-trait",
"chrono",
"hyper",
"oauth2",
"reqwest",
"time_id",
"toml",
]
stripe = ["hyper", "reqwest", "tokio", "toml"]
time_id = ["rand"]
videos = ["async-trait", "axum", "hyper", "reqwest", "serde_json", "toml"]
yew_markdown = ["yew"]
[dependencies]
anyhow = { version = "1", optional = true }
async-trait = { version = "0.1", optional = true }
aws-config = { version = "1", default-features = false, features = [
"rt-tokio",
], optional = true }
aws-sdk-apigatewaymanagement = { version = "=1.49.0", default-features = false, features = [
"rt-tokio",
"rustls",
], optional = true }
aws-sdk-bedrockruntime = { version = "=1.62.0", default-features = false, features = [
"rt-tokio",
"rustls",
], optional = true }
aws-sdk-dynamodb = { version = "=1.54.0", default-features = false, features = [
"rt-tokio",
"rustls",
], optional = true }
aws-sdk-route53 = { version = "=1.53.0", default-features = false, features = [
"rt-tokio",
"rustls",
], optional = true }
aws-sdk-s3 = { version = "=1.62.0", default-features = false, features = [
"rt-tokio",
"rustls",
], optional = true }
aws-sdk-translate = { version = "=1.49.0", default-features = false, features = [
"rt-tokio",
"rustls",
], optional = true }
axum = { version = "0.7.5", features = ["multipart"], optional = true }
base64 = { version = "0.22", optional = true }
bitcode = { version = "0.6.4", default-features = false, features = [
"derive",
], optional = true }
# bitcode = { version = "0", features = ["derive"], default-features = false, optional = true }
chrono = { version = "0.4", optional = true }
futures = { version = "0", optional = true }
hyper = { version = "1", optional = true }
jsonwebtoken = { version = "9.3", optional = true }
lambda_runtime = { version = "0.11", optional = true }
oauth2 = { version = "4.4", optional = true }
pnet = { version = "0.33", optional = true }
rand = { version = "0.8", optional = true }
reqwest = { version = "0.12", features = [
"json",
"rustls-tls",
], default-features = false, optional = true }
serde = { version = "1.0", features = ["derive"] }
serde_dynamo = { version = "4.1", features = [
"aws-sdk-dynamodb+1",
], optional = true }
serde_json = { version = "1.0", optional = true }
# TODO: structopt is superseded by clap version 4
structopt = { version = "0.3", optional = true }
tokio = { version = "1", optional = true }
toml = { version = "0.7", optional = true }
tower-http = { version = "0.5", features = ["fs"], optional = true }
urlencoding = { version = "2.1", optional = true }
yew = { version = "0.21.0", features = ["ssr"], optional = true }