We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8593014 commit cf6ae25Copy full SHA for cf6ae25
1 file changed
build.rs
@@ -13,6 +13,7 @@ fn main() -> Result<(), Box<dyn Error>> {
13
// Add deprecated objects
14
let mut unique_ids: Vec<Value> = include_str!("./crates/codegen/data/uniques.txt")
15
.split('\n')
16
+ .map(str::trim)
17
.filter(|id| !id.is_empty())
18
.map(|id| Value::String(id.into()))
19
.collect();
0 commit comments