(platform: zed::Os)
| 5 | const VERSION_FILE: &str = "version.txt"; |
| 6 | |
| 7 | fn binary_name(platform: zed::Os) -> &'static str { |
| 8 | match platform { |
| 9 | zed::Os::Windows => "csskit.exe", |
| 10 | zed::Os::Mac | zed::Os::Linux => "csskit", |
| 11 | } |
| 12 | } |
| 13 | |
| 14 | fn asset_name(platform: zed::Os, arch: zed::Architecture) -> Result<String> { |
| 15 | Ok(format!( |
no outgoing calls
no test coverage detected