forked from s-panferov/valico
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.rs
53 lines (47 loc) · 1.52 KB
/
build.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
extern crate phf_codegen;
use std::fs::File;
use std::io::{BufWriter, Write};
use std::path::Path;
use std::env;
fn main() {
let path = Path::new(&env::var("OUT_DIR").unwrap()).join("codegen.rs");
let mut file = BufWriter::new(File::create(&path).unwrap());
write!(&mut file, "static PROPERTY_KEYS: phf::Set<&'static str> = ").unwrap();
phf_codegen::Set::new()
.entry("properties")
.entry("patternProperties")
.build(&mut file)
.unwrap();
write!(&mut file, ";\n").unwrap();
write!(&mut file, "static NON_SCHEMA_KEYS: phf::Set<&'static str> = ").unwrap();
phf_codegen::Set::new()
.entry("properties")
.entry("patternProperties")
.entry("dependencies")
.entry("definitions")
.entry("anyOf")
.entry("allOf")
.entry("oneOf")
.build(&mut file)
.unwrap();
write!(&mut file, ";\n").unwrap();
write!(&mut file, "static FINAL_KEYS: phf::Set<&'static str> = ").unwrap();
phf_codegen::Set::new()
.entry("enum")
.entry("required")
.entry("type")
.build(&mut file)
.unwrap();
write!(&mut file, ";\n").unwrap();
write!(&mut file, "const ALLOW_NON_CONSUMED_KEYS: phf::Set<&'static str> = ").unwrap();
phf_codegen::Set::new()
.entry("definitions")
.entry("$schema")
.entry("id")
.entry("default")
.entry("description")
.entry("format")
.build(&mut file)
.unwrap();
write!(&mut file, ";\n").unwrap();
}