diff --git a/experimental/precompiler/Cargo.lock b/experimental/precompiler/Cargo.lock deleted file mode 100644 index 987e200..0000000 --- a/experimental/precompiler/Cargo.lock +++ /dev/null @@ -1,4 +0,0 @@ -[[package]] -name = "precompiler" -version = "0.1.0" - diff --git a/experimental/precompiler/Cargo.toml b/experimental/precompiler/Cargo.toml deleted file mode 100644 index 14aa632..0000000 --- a/experimental/precompiler/Cargo.toml +++ /dev/null @@ -1,6 +0,0 @@ -[package] -name = "precompiler" -version = "0.1.0" -authors = ["ntrupin "] - -[dependencies] diff --git a/experimental/precompiler/precompiler.rs b/experimental/precompiler/precompiler.rs deleted file mode 100644 index 73614a1..0000000 --- a/experimental/precompiler/precompiler.rs +++ /dev/null @@ -1,43 +0,0 @@ -fn main() { - let parts: Vec<&str> = "charset -> utf-8\nmeta -> viewport -> width=device-width, initial-scale=1\nlink -> stylesheet -> index.css\ntitle -> Hello, World!\ndiv\nh1 -> Example Domain\np -> This domain is established to be used for illustrative examples in documents. You may use this domain in examples without prior coordination or asking for permission.\na -> href='http://www.iana.org/domains/example' -> More information...\nend -> div" - .trim() - .split("\n") - .collect(); - for part in parts { - let seg: Vec<&str> = part - .trim() - .split(" -> ") - .collect(); - if seg.len() == 3 { - let (tag, args, inner) = (seg[0], seg[1], seg[2]); - match tag { - "h1"|"h2"|"h3"|"h4"|"h5"|"h6"|"p"|"a"|"abbr"|"button"|"li" => { - match inner { - "noend"|"."|" " => println!("<{} {}>", tag, args), - _ => println!("<{} {}>{}", tag, args, inner, tag) - } - }, - "div"|"span"|"center"|"header"|"nav"|"main"|"form"|"table"|"th"|"tr"|"td" => - match inner { - "end"|"."|" " => println!("<{} {}>", tag, args, tag), - _ => println!("<{} {}>{}", tag, args, inner) - } - _ => println!("{}", tag) - } - } if seg.len() == 2 { - let (tag, args) = (seg[0], seg[1]); - match tag { - "h1"|"h2"|"h3"|"h4"|"h5"|"h6"|"p"|"a"|"abbr"|"button"|"li" => println!("<{}>{}", tag, args, tag), - "div"|"span"|"center"|"header"|"nav"|"main"|"form"|"table"|"th"|"tr"|"td" => println!("<{} {}>", tag, args), - "end" => println!("", args), - _ => println!("{}", tag) - } - } else { - let tag = seg[0]; - match tag { - "h1"|"h2"|"h3"|"h4"|"h5"|"h6"|"p"|"a"|"abbr"|"button"|"li"|"div"|"span"|"center"|"header"|"nav"|"main"|"form"|"table"|"th"|"tr"|"td" => println!("<{}>", tag), - _ => println!("{}", tag) - } - } - } -} diff --git a/experimental/precompiler/src/main.rs b/experimental/precompiler/src/main.rs deleted file mode 100644 index 73614a1..0000000 --- a/experimental/precompiler/src/main.rs +++ /dev/null @@ -1,43 +0,0 @@ -fn main() { - let parts: Vec<&str> = "charset -> utf-8\nmeta -> viewport -> width=device-width, initial-scale=1\nlink -> stylesheet -> index.css\ntitle -> Hello, World!\ndiv\nh1 -> Example Domain\np -> This domain is established to be used for illustrative examples in documents. You may use this domain in examples without prior coordination or asking for permission.\na -> href='http://www.iana.org/domains/example' -> More information...\nend -> div" - .trim() - .split("\n") - .collect(); - for part in parts { - let seg: Vec<&str> = part - .trim() - .split(" -> ") - .collect(); - if seg.len() == 3 { - let (tag, args, inner) = (seg[0], seg[1], seg[2]); - match tag { - "h1"|"h2"|"h3"|"h4"|"h5"|"h6"|"p"|"a"|"abbr"|"button"|"li" => { - match inner { - "noend"|"."|" " => println!("<{} {}>", tag, args), - _ => println!("<{} {}>{}", tag, args, inner, tag) - } - }, - "div"|"span"|"center"|"header"|"nav"|"main"|"form"|"table"|"th"|"tr"|"td" => - match inner { - "end"|"."|" " => println!("<{} {}>", tag, args, tag), - _ => println!("<{} {}>{}", tag, args, inner) - } - _ => println!("{}", tag) - } - } if seg.len() == 2 { - let (tag, args) = (seg[0], seg[1]); - match tag { - "h1"|"h2"|"h3"|"h4"|"h5"|"h6"|"p"|"a"|"abbr"|"button"|"li" => println!("<{}>{}", tag, args, tag), - "div"|"span"|"center"|"header"|"nav"|"main"|"form"|"table"|"th"|"tr"|"td" => println!("<{} {}>", tag, args), - "end" => println!("", args), - _ => println!("{}", tag) - } - } else { - let tag = seg[0]; - match tag { - "h1"|"h2"|"h3"|"h4"|"h5"|"h6"|"p"|"a"|"abbr"|"button"|"li"|"div"|"span"|"center"|"header"|"nav"|"main"|"form"|"table"|"th"|"tr"|"td" => println!("<{}>", tag), - _ => println!("{}", tag) - } - } - } -} diff --git a/experimental/precompiler/target/.rustc_info.json b/experimental/precompiler/target/.rustc_info.json deleted file mode 100644 index f9d3d76..0000000 --- a/experimental/precompiler/target/.rustc_info.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc_fingerprint":16333252844011932429,"outputs":{"1617349019360157463":["___.exe\nlib___.rlib\n___.dll\n___.dll\n___.lib\n___.dll\nC:\\Users\\ntrup\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\ndebug_assertions\nproc_macro\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"msvc\"\ntarget_family=\"windows\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_os=\"windows\"\ntarget_pointer_width=\"64\"\nwindows\n",""],"1164083562126845933":["rustc 1.29.2 (17a9dc751 2018-10-05)\nbinary: rustc\ncommit-hash: 17a9dc7513b9fea883dc9505f09f97c63d1d601b\ncommit-date: 2018-10-05\nhost: x86_64-pc-windows-msvc\nrelease: 1.29.2\nLLVM version: 7.0\n",""],"1464629490410732173":["___.exe\nlib___.rlib\n___.dll\n___.dll\n___.lib\n___.dll\nC:\\Users\\ntrup\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\ndebug_assertions\nproc_macro\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"msvc\"\ntarget_family=\"windows\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_os=\"windows\"\ntarget_pointer_width=\"64\"\nwindows\n",""]}} diff --git a/experimental/precompiler/target/debug/.cargo-lock b/experimental/precompiler/target/debug/.cargo-lock deleted file mode 100644 index d3f5a12..0000000 --- a/experimental/precompiler/target/debug/.cargo-lock +++ /dev/null @@ -1 +0,0 @@ - diff --git a/experimental/precompiler/target/debug/.fingerprint/precompiler-c0c37d12c74f2ea7/bin-precompiler-c0c37d12c74f2ea7 b/experimental/precompiler/target/debug/.fingerprint/precompiler-c0c37d12c74f2ea7/bin-precompiler-c0c37d12c74f2ea7 deleted file mode 100644 index 4b94118..0000000 --- a/experimental/precompiler/target/debug/.fingerprint/precompiler-c0c37d12c74f2ea7/bin-precompiler-c0c37d12c74f2ea7 +++ /dev/null @@ -1 +0,0 @@ -2214fbc1a6425427 \ No newline at end of file diff --git a/experimental/precompiler/target/debug/.fingerprint/precompiler-c0c37d12c74f2ea7/bin-precompiler-c0c37d12c74f2ea7.json b/experimental/precompiler/target/debug/.fingerprint/precompiler-c0c37d12c74f2ea7/bin-precompiler-c0c37d12c74f2ea7.json deleted file mode 100644 index 661f1ec..0000000 --- a/experimental/precompiler/target/debug/.fingerprint/precompiler-c0c37d12c74f2ea7/bin-precompiler-c0c37d12c74f2ea7.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":18195376587073957235,"features":"[]","target":5074940809286313572,"profile":16276118714402656289,"path":1036222786711178230,"deps":[],"local":[{"MtimeBased":[[1540378758,8165300],".fingerprint\\precompiler-c0c37d12c74f2ea7\\dep-bin-precompiler-c0c37d12c74f2ea7"]}],"rustflags":[],"edition":"Edition2015"} \ No newline at end of file diff --git a/experimental/precompiler/target/debug/.fingerprint/precompiler-c0c37d12c74f2ea7/dep-bin-precompiler-c0c37d12c74f2ea7 b/experimental/precompiler/target/debug/.fingerprint/precompiler-c0c37d12c74f2ea7/dep-bin-precompiler-c0c37d12c74f2ea7 deleted file mode 100644 index f2893a6..0000000 Binary files a/experimental/precompiler/target/debug/.fingerprint/precompiler-c0c37d12c74f2ea7/dep-bin-precompiler-c0c37d12c74f2ea7 and /dev/null differ diff --git a/experimental/precompiler/target/debug/deps/precompiler-c0c37d12c74f2ea7.d b/experimental/precompiler/target/debug/deps/precompiler-c0c37d12c74f2ea7.d deleted file mode 100644 index 0311458..0000000 --- a/experimental/precompiler/target/debug/deps/precompiler-c0c37d12c74f2ea7.d +++ /dev/null @@ -1,5 +0,0 @@ -C:\Users\ntrup\projects\precompiler\target\debug\deps\precompiler-c0c37d12c74f2ea7.exe: src\main.rs - -C:\Users\ntrup\projects\precompiler\target\debug\deps\precompiler-c0c37d12c74f2ea7.d: src\main.rs - -src\main.rs: diff --git a/experimental/precompiler/target/debug/deps/precompiler-c0c37d12c74f2ea7.exe b/experimental/precompiler/target/debug/deps/precompiler-c0c37d12c74f2ea7.exe deleted file mode 100644 index 1324b35..0000000 Binary files a/experimental/precompiler/target/debug/deps/precompiler-c0c37d12c74f2ea7.exe and /dev/null differ diff --git a/experimental/precompiler/target/debug/deps/precompiler-c0c37d12c74f2ea7.pdb b/experimental/precompiler/target/debug/deps/precompiler-c0c37d12c74f2ea7.pdb deleted file mode 100644 index 921c8d2..0000000 Binary files a/experimental/precompiler/target/debug/deps/precompiler-c0c37d12c74f2ea7.pdb and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/10ygozpgsu0ud2lu.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/10ygozpgsu0ud2lu.o deleted file mode 100644 index 1072b37..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/10ygozpgsu0ud2lu.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/16i0u6jlhoj1fwbo.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/16i0u6jlhoj1fwbo.o deleted file mode 100644 index d60502d..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/16i0u6jlhoj1fwbo.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/16u6js6g0l3k1ic6.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/16u6js6g0l3k1ic6.o deleted file mode 100644 index c4ba493..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/16u6js6g0l3k1ic6.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/181cuta0v63atwcm.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/181cuta0v63atwcm.o deleted file mode 100644 index d5557cb..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/181cuta0v63atwcm.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/1c4sbqhvukbgthag.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/1c4sbqhvukbgthag.o deleted file mode 100644 index 290921d..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/1c4sbqhvukbgthag.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/1dqvxks6k2bzkxe.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/1dqvxks6k2bzkxe.o deleted file mode 100644 index ef1c504..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/1dqvxks6k2bzkxe.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/1im38lueib99jsk0.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/1im38lueib99jsk0.o deleted file mode 100644 index f4b86ea..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/1im38lueib99jsk0.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/1jnlhyxj59jycbjv.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/1jnlhyxj59jycbjv.o deleted file mode 100644 index 49ff09e..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/1jnlhyxj59jycbjv.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/1mvmz58owquyropc.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/1mvmz58owquyropc.o deleted file mode 100644 index f80d23a..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/1mvmz58owquyropc.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/1o6b1la7g4jnv39b.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/1o6b1la7g4jnv39b.o deleted file mode 100644 index 36e7c40..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/1o6b1la7g4jnv39b.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/1q8ffos2d96smbjs.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/1q8ffos2d96smbjs.o deleted file mode 100644 index 91a2b04..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/1q8ffos2d96smbjs.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/1y16o1qfye96o7m0.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/1y16o1qfye96o7m0.o deleted file mode 100644 index 7a1fd69..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/1y16o1qfye96o7m0.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/23tqyymcb18u96mb.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/23tqyymcb18u96mb.o deleted file mode 100644 index 8274d5d..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/23tqyymcb18u96mb.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/2imnh2vhxcqrizhm.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/2imnh2vhxcqrizhm.o deleted file mode 100644 index b0d1ca4..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/2imnh2vhxcqrizhm.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/2jqywn86b2gsqohu.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/2jqywn86b2gsqohu.o deleted file mode 100644 index ced5c02..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/2jqywn86b2gsqohu.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/2lyh15q6cjwzy18c.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/2lyh15q6cjwzy18c.o deleted file mode 100644 index 0e27362..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/2lyh15q6cjwzy18c.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/2q5257pdh5222n7q.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/2q5257pdh5222n7q.o deleted file mode 100644 index d7c28b2..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/2q5257pdh5222n7q.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/3ayaeypdcro9d6yk.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/3ayaeypdcro9d6yk.o deleted file mode 100644 index c2ca8fa..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/3ayaeypdcro9d6yk.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/3ldk0i2zxftngav8.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/3ldk0i2zxftngav8.o deleted file mode 100644 index 80bc2c7..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/3ldk0i2zxftngav8.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/3rngp6bm2u2q5z0y.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/3rngp6bm2u2q5z0y.o deleted file mode 100644 index b4b4db1..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/3rngp6bm2u2q5z0y.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/436dotimmrgzkwfa.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/436dotimmrgzkwfa.o deleted file mode 100644 index f71283c..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/436dotimmrgzkwfa.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/43v6g0y2xsxoggnt.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/43v6g0y2xsxoggnt.o deleted file mode 100644 index 7e462f7..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/43v6g0y2xsxoggnt.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/47kb80rpg37n2ote.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/47kb80rpg37n2ote.o deleted file mode 100644 index e1a75e8..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/47kb80rpg37n2ote.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/48721dc4k5qxei0u.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/48721dc4k5qxei0u.o deleted file mode 100644 index 3e84d51..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/48721dc4k5qxei0u.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/49a7n47po4ttqjl7.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/49a7n47po4ttqjl7.o deleted file mode 100644 index eb151ce..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/49a7n47po4ttqjl7.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/49lx1q7cxvpykyv0.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/49lx1q7cxvpykyv0.o deleted file mode 100644 index d44ec38..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/49lx1q7cxvpykyv0.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/4oc10dk278mpk1vy.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/4oc10dk278mpk1vy.o deleted file mode 100644 index b311bbb..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/4oc10dk278mpk1vy.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/4xq48u46a1pwiqn7.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/4xq48u46a1pwiqn7.o deleted file mode 100644 index 0db995a..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/4xq48u46a1pwiqn7.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/4yh8x2b62dcih00t.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/4yh8x2b62dcih00t.o deleted file mode 100644 index 418bdb8..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/4yh8x2b62dcih00t.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/4ypvbwho0bu5tnww.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/4ypvbwho0bu5tnww.o deleted file mode 100644 index 8bfa6e9..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/4ypvbwho0bu5tnww.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/5544xgl7axh7p8nz.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/5544xgl7axh7p8nz.o deleted file mode 100644 index 1081a43..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/5544xgl7axh7p8nz.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/5e4kzrnyra2cr0bf.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/5e4kzrnyra2cr0bf.o deleted file mode 100644 index e0d4d19..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/5e4kzrnyra2cr0bf.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/7p53qlves2rwxx0.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/7p53qlves2rwxx0.o deleted file mode 100644 index b823d15..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/7p53qlves2rwxx0.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/81jpvh8cn5k8ng8.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/81jpvh8cn5k8ng8.o deleted file mode 100644 index 9eb01f9..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/81jpvh8cn5k8ng8.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/8xzrsc1ux72v29j.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/8xzrsc1ux72v29j.o deleted file mode 100644 index 8901a52..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/8xzrsc1ux72v29j.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/98g0d9x8aw3akpe.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/98g0d9x8aw3akpe.o deleted file mode 100644 index ee99633..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/98g0d9x8aw3akpe.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/9elsx31vb4it187.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/9elsx31vb4it187.o deleted file mode 100644 index 656b4b4..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/9elsx31vb4it187.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/dep-graph.bin b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/dep-graph.bin deleted file mode 100644 index b330c42..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/dep-graph.bin and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/query-cache.bin b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/query-cache.bin deleted file mode 100644 index f8fe4bf..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/query-cache.bin and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/sjcqfz2ncn1dupz.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/sjcqfz2ncn1dupz.o deleted file mode 100644 index 092acec..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/sjcqfz2ncn1dupz.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/work-products.bin b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/work-products.bin deleted file mode 100644 index f1a088e..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/work-products.bin and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/y08g5q2x813c4wx.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/y08g5q2x813c4wx.o deleted file mode 100644 index 9a0b4fd..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/y08g5q2x813c4wx.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/z9ox7biyn1otfln.o b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/z9ox7biyn1otfln.o deleted file mode 100644 index 1e7d482..0000000 Binary files a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e-ea58m1urnjp5/z9ox7biyn1otfln.o and /dev/null differ diff --git a/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e.lock b/experimental/precompiler/target/debug/incremental/precompiler-34a8xerjr8fqb/s-f60o8cf17i-5wsm1e.lock deleted file mode 100644 index e69de29..0000000 diff --git a/experimental/precompiler/target/debug/precompiler.d b/experimental/precompiler/target/debug/precompiler.d deleted file mode 100644 index 896b173..0000000 --- a/experimental/precompiler/target/debug/precompiler.d +++ /dev/null @@ -1 +0,0 @@ -C:\Users\ntrup\projects\precompiler\target\debug\precompiler.pdb: C:\Users\ntrup\projects\precompiler\src\main.rs diff --git a/experimental/precompiler/target/debug/precompiler.exe b/experimental/precompiler/target/debug/precompiler.exe deleted file mode 100644 index 1324b35..0000000 Binary files a/experimental/precompiler/target/debug/precompiler.exe and /dev/null differ diff --git a/experimental/precompiler/target/debug/precompiler.pdb b/experimental/precompiler/target/debug/precompiler.pdb deleted file mode 100644 index 921c8d2..0000000 Binary files a/experimental/precompiler/target/debug/precompiler.pdb and /dev/null differ