-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
75 lines (66 loc) · 2.02 KB
/
Cargo.toml
File metadata and controls
75 lines (66 loc) · 2.02 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
[package]
name = "factor"
version = "0.2.0"
description = "Run twelve-factor apps locally"
repository = "https://github.com/twelve-factor/factor"
keywords = ["container", "kubernetes", "platform", "twelve-factor"]
categories = ["command-line-utilities", "configuration", "development-tools"]
edition = "2021"
license-file = "LICENSE"
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
base64 = "0.22"
biscuit = "0.7.0"
chrono = "0.4"
clap = { version = "4.5.21", features = ["derive", "env"] }
dirs = "5.0"
dotenvy = "0.15.7"
env_logger = "0.11.5"
http = "1.1.0"
jsonwebtoken = "9.3"
k8s-openapi = { version = "0.23.0", features = ["latest"] }
kube = { version = "0.97.0", features = ["derive", "runtime"] }
log = "0.4.22"
ngrok = "0.13.1"
notify = "7.0.0"
num-bigint = "0.4.6"
pingora = "0.4.0"
pingora-core = "0.4.0"
pingora-http = "0.4.0"
pingora-proxy = "0.4.0"
rand = "0.8.5"
regex = "1.11"
reqwest = { version = "0.12", default-features = false}
rsa = "0.9.7"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = "3.11"
sha2 = "0.10.8"
shellexpand = "3.1.0"
strum_macros = "0.26"
tempfile = "3.14.0"
tokio = { version = "1.41", features = ["full"] }
toml = "0.8"
directories = "5.0"
futures = "0.3.31"
[target.'cfg(unix)'.dependencies]
libc = "0.2.169"
[target.x86_64-unknown-linux-musl.dependencies]
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
[features]
default = ["reqwest/native-tls", "reqwest/blocking", "reqwest/json"]
[dev-dependencies]
xshell = "0.2.7"
[lints.clippy]
cargo = { level = "deny", priority = -1 }
multiple_crate_versions = "allow"
suspicious = { level = "deny", priority = -1 }
correctness = { level = "deny", priority = -1 }
pedantic = { level = "warn", priority = -1 }
style = { level = "warn", priority = -1 }
module_name_repetitions = "allow"
disallowed-macros = "deny"
# workaround for pingora-core issue https://github.com/cloudflare/pingora/issues/568
[patch.crates-io]
sfv = { git = "https://github.com/undef1nd/sfv.git", tag = "v0.9.4" }