build: try to make dev bearable
This commit is contained in:
parent
643f94b580
commit
15eb102784
1 changed files with 7 additions and 1 deletions
|
@ -8,6 +8,12 @@ strip = true
|
||||||
lto = true
|
lto = true
|
||||||
codegen-units = 1
|
codegen-units = 1
|
||||||
|
|
||||||
|
# Speed up compilation to make dev bearable
|
||||||
|
[profile.dev]
|
||||||
|
debug = 0
|
||||||
|
strip = "debuginfo"
|
||||||
|
codegen-units = 512
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix-cors = "0.7.1"
|
actix-cors = "0.7.1"
|
||||||
actix-web = "4.11"
|
actix-web = "4.11"
|
||||||
|
@ -32,7 +38,7 @@ futures-util = "0.3.31"
|
||||||
bunny-api-tokio = "0.3.0"
|
bunny-api-tokio = "0.3.0"
|
||||||
bindet = "0.3.2"
|
bindet = "0.3.2"
|
||||||
deadpool = "0.12"
|
deadpool = "0.12"
|
||||||
diesel = { version = "2.2", features = ["uuid", "chrono"] }
|
diesel = { version = "2.2", features = ["uuid", "chrono"], default-features = false }
|
||||||
diesel-async = { version = "0.5", features = ["deadpool", "postgres", "async-connection-wrapper"] }
|
diesel-async = { version = "0.5", features = ["deadpool", "postgres", "async-connection-wrapper"] }
|
||||||
diesel_migrations = { version = "2.2.0", features = ["postgres"] }
|
diesel_migrations = { version = "2.2.0", features = ["postgres"] }
|
||||||
thiserror = "2.0.12"
|
thiserror = "2.0.12"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue