Initial setup for a separate compare target.

This commit is contained in:
Tom Alexander 2023-04-10 13:45:36 -04:00
parent e59d1b8fde
commit 552ac974d5
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
3 changed files with 12 additions and 0 deletions

View File

@ -9,6 +9,11 @@ name = "toy"
path = "src/main.rs"
[[bin]]
name = "org_compare"
path = "src/org_compare.rs"
[dependencies]
nom = "7.1.1"
opentelemetry = "0.17.0"

1
src/compare/mod.rs Normal file
View File

@ -0,0 +1 @@

6
src/org_compare.rs Normal file
View File

@ -0,0 +1,6 @@
#![feature(round_char_boundary)]
mod compare;
fn main() -> Result<(), Box<dyn std::error::Error>> {
Ok(())
}