Now let's take a silly one
0

Configure Feed

Select the types of activity you want to include in your feed.

make sha256 default

Lewis: May this revision serve well! <lu5a@proton.me>

author
Lewis
date (Jun 22, 2026, 6:44 PM +0300) commit fe317eab parent e1d0034b change-id unxwtpwm
+3 -3
+2 -2
example.toml
··· 105 105 #user_email = "noreply@tangled.sh" 106 106 107 107 # Can also be specified via environment variable `KNOT_GIT_OBJECT_FORMAT`. 108 - # Default value: "sha1" 109 - #object_format = "sha1" 108 + # Default value: "sha256" 109 + #object_format = "sha256" 110 110 111 111 [secrets] 112 112 # Can also be specified via environment variable `KNOT_SEALED_KEY_FILE`.
+1 -1
crates/knot-config/src/lib.rs
··· 127 127 #[config(env = "KNOT_GIT_USER_EMAIL", default = "noreply@tangled.sh")] 128 128 pub user_email: String, 129 129 130 - #[config(env = "KNOT_GIT_OBJECT_FORMAT", default = "sha1")] 130 + #[config(env = "KNOT_GIT_OBJECT_FORMAT", default = "sha256")] 131 131 pub object_format: String, 132 132 } 133 133