File tree 1 file changed +14
-1
lines changed
1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,8 @@ exclude = ["tools/fuzz"]
58
58
[profile .release ]
59
59
debug = 1
60
60
lto = " thin"
61
- codegen-units = 1 # Reduce number of codegen units to increase optimizations.
61
+ overflow-checks = false
62
+ codegen-units = 1 # Reduce number of codegen units to increase optimizations.
62
63
63
64
[profile .release .package ]
64
65
arrow2 = { codegen-units = 4 }
@@ -67,9 +68,21 @@ databend-query = { codegen-units = 4 }
67
68
68
69
[profile .bench ]
69
70
debug = true
71
+ overflow-checks = false
70
72
71
73
[profile .dev ]
72
74
split-debuginfo = " unpacked"
75
+ overflow-checks = false
76
+
77
+ [profile .test ]
78
+ opt-level = 0
79
+ debug = 0
80
+ codegen-units = 16
81
+ lto = false
82
+ incremental = true
83
+ debug-assertions = true
84
+ overflow-checks = true
85
+ rpath = false
73
86
74
87
[profile .dev .package ]
75
88
addr2line = { opt-level = 3 }
You can’t perform that action at this time.
0 commit comments