forked from ferronweb/ferron
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (37 loc) · 2.11 KB
/
Cargo.toml
File metadata and controls
42 lines (37 loc) · 2.11 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
[workspace]
members = [
"ferron",
"ferron-common",
"ferron-dns-builtin",
"ferron-load-modules",
"ferron-modules-builtin",
"ferron-passwd",
"ferron-yaml2kdl-core",
"ferron-yaml2kdl", "ferron-precompress", "ferron-observability-builtin",
]
exclude = ["build/installer", "build/prepare", "dockertest"]
resolver = "2"
[workspace.dependencies]
kdl = "6.3.4"
mimalloc = { version = "0.1.46" }
password-auth = { version = "1.0.0", features = ["pbkdf2", "argon2", "scrypt"] }
shiba = "0.1.1"
ferron-common = { path = "./ferron-common", default-features = false }
ferron-dns-builtin = { path = "./ferron-dns-builtin", default-features = false }
ferron-load-modules = { path = "./ferron-load-modules", default-features = false }
ferron-modules-builtin = { path = "./ferron-modules-builtin", default-features = false }
ferron-observability-builtin = { path = "./ferron-observability-builtin", default-features = false }
[patch.crates-io]
monoio = { git = "https://github.com/DorianNiemiecSVRJS/monoio.git" } # This is needed for the web server to be able to accept more than one connection on Windows, and to be able to be compiled correctly on FreeBSD
cache_control = { git = "https://github.com/DorianNiemiecSVRJS/rust-cache-control.git" } # This is a fork of "cache-control" crate, with a bugfix related to "s-maxage" directive
dns-update = { git = "https://github.com/DorianNiemiecSVRJS/dns-update.git" } # This is a fork of "dns-update" crate, with updated dependencies and crypto provider requirement removed
async-compression = { git = "https://github.com/DorianNiemiecSVRJS/async-compression.git", branch = "0.4.28" } # This is a fork of "async-compression" crate that uses "zlib-rs" backend for "flate2" instead of "miniz_oxide"
[patch.'https://github.com/ferronweb/ferron']
ferron-common = { path = "./ferron-common" }
[profile.release]
strip = true
lto = true
codegen-units = 1
panic = "abort"
[workspace.metadata.cargo-shear]
ignored = ["shiba", "ferron-modules-builtin", "ferron-dns-builtin", "ferron-observability-builtin"]