diff --git a/Cargo.lock b/Cargo.lock index 08ed88d..be4157f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1080,13 +1080,6 @@ dependencies = [ "pin-project-lite", ] -[[package]] -name = "examples" -version = "0.1.0" -dependencies = [ - "car-mirror", -] - [[package]] name = "fastrand" version = "1.9.0" diff --git a/Cargo.toml b/Cargo.toml index 16f2434..acc9bbc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,6 @@ members = [ "car-mirror-benches", "car-mirror-reqwest", "car-mirror-wasm", - "examples", ] [workspace.dependencies] diff --git a/car-mirror-wasm/package.json b/car-mirror-wasm/package.json index 1d71aa2..a72e35c 100644 --- a/car-mirror-wasm/package.json +++ b/car-mirror-wasm/package.json @@ -1,6 +1,6 @@ { "name": "car-mirror", - "version": "0.0.1", + "version": "0.1.0", "description": "Wasm bindings to the rust implementation of the car mirror protocol", "main": "index.js", "type": "module", diff --git a/examples/Cargo.toml b/examples/Cargo.toml deleted file mode 100644 index fa1fa7e..0000000 --- a/examples/Cargo.toml +++ /dev/null @@ -1,13 +0,0 @@ -[package] -name = "examples" -version = "0.1.0" -publish = false -edition = "2021" -authors = ["Philipp Krüger "] - -[dev-dependencies] -car-mirror = { path = "../car-mirror", version = "0.1" } - -[[example]] -name = "counterparts" -path = "counterparts.rs" diff --git a/examples/counterparts.rs b/examples/counterparts.rs deleted file mode 100644 index 7622550..0000000 --- a/examples/counterparts.rs +++ /dev/null @@ -1,6 +0,0 @@ -use std::error::Error; - -pub fn main() -> Result<(), Box> { - println!("Alien Shore!"); - Ok(()) -}