-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
57 lines (46 loc) · 1.04 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
[package]
name = "acme-azure-function"
version = "0.1.0"
license = "AGPL-3.0-only"
authors = ["Arnav Singh <[email protected]>"]
edition = "2021"
publish = false
[dependencies]
anyhow = { version = "1", default-features = false }
azure = { path = "azure" }
function-worker = { path = "function-worker" }
function-renew-cert = { path = "function-renew-cert" }
log2 = { path = "log2" }
[workspace]
members = [
"acme",
"azure",
"function-renew-cert",
"function-worker",
"http-common",
"log2",
"time2",
]
resolver = "2"
[workspace.lints.rust]
rust_2018_idioms = "deny"
warnings = "deny"
[workspace.lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
default_trait_access = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
similar_names = "allow"
struct_field_names = "allow"
too_many_lines = "allow"
type_complexity = "allow"
[profile.release]
codegen-units = 1
debug = false
incremental = false
lto = true
opt-level = "s"
panic = "abort"
strip = "symbols"