We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fa0d76 commit c832bf6Copy full SHA for c832bf6
src/murfey/server/api/bootstrap.py
@@ -606,6 +606,12 @@ def get_cargo_config(request: Request):
606
"[source.murfey-crates]",
607
f'registry = "sparse+{index_mirror}"', # sparse+ to use sparse protocol
608
"",
609
+ "[registries.murfey-crates]",
610
+ f'index = "sparse+{index_mirror}"', # sparse+ to use sparse protocol
611
+ "",
612
+ "[registry]",
613
+ 'default = "murfey-crates"', # Redirect to our mirror
614
615
]
616
)
617
config_bytes = io.BytesIO(config_data.encode("utf-8"))
0 commit comments