/ .replit
.replit
 1  # Replit support 
 2  run = "direnv allow && nix develop --command just mprocs"
 3  hidden = ["target"]
 4  entrypoint = "README.md"
 5  modules = ["rust-stable:v4-20240117-0bd73cd"]
 6  
 7  [env]
 8  CARGO_PROFILE_DEV_CODEGEN_UNITS = "8"
 9  CARGO_PROFILE_DEV_DEBUG = "0"
10  CARGO_PROFILE_DEV_LTO = "false"
11  CARGO_PROFILE_DEV_INCREMENTAL = "false"
12  CARGO_PROFILE_DEV_OPT_LEVEL = "s"
13  
14  [packager]
15  language = "rust"
16  
17  [packager.features]
18  packageSearch = true
19  
20  [languages.rust]
21  pattern = "**/*.rs"
22  
23  [languages.rust.languageServer]
24  start = "nix --extra-experimental-features nix-command --extra-experimental-features flakes develop local-overlay-store read-only-local-store .#replit -c rust-analyzer"
25  
26  [nix]
27  # this must be kept in sync with `nixpkgs` channel in `flake.nix`
28  channel = "stable-23_11"
29  
30  [gitHubImport]
31  requiredFiles = [".replit", "replit.nix"]