checkpoint

This commit is contained in:
John Smith
2023-06-06 19:09:29 -04:00
parent 771a7c9e7e
commit 88db69c28f
6 changed files with 63 additions and 364 deletions
+1 -6
View File
@@ -24,11 +24,6 @@ use tools::*;
use tracing::*;
use veilid_logs::*;
#[allow(clippy::all)]
pub mod veilid_client_capnp {
include!(concat!(env!("OUT_DIR"), "/proto/veilid_client_capnp.rs"));
}
#[instrument(err)]
fn main() -> EyreResult<()> {
#[cfg(windows)]
@@ -76,7 +71,7 @@ fn main() -> EyreResult<()> {
if matches.occurrences_of("emit-schema") != 0 {
if let Some(esstr) = matches.value_of("emit-schema") {
let mut schemas = HashMap::<String, String>::new();
veilid_core::emit_schemas(&mut schemas);
veilid_core::json_api::emit_schemas(&mut schemas);
if let Some(schema) = schemas.get(esstr) {
println!("{}", schema);