From ade21185976ea2324d313a5c28a88cc0492f2934 Mon Sep 17 00:00:00 2001 From: HampusM Date: Sat, 20 Aug 2022 17:10:08 +0200 Subject: docs: add a example that uses a 3rd party library --- examples/with-3rd-party/third-party-lib/Cargo.toml | 6 ++++++ examples/with-3rd-party/third-party-lib/src/lib.rs | 23 ++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 examples/with-3rd-party/third-party-lib/Cargo.toml create mode 100644 examples/with-3rd-party/third-party-lib/src/lib.rs (limited to 'examples/with-3rd-party/third-party-lib') diff --git a/examples/with-3rd-party/third-party-lib/Cargo.toml b/examples/with-3rd-party/third-party-lib/Cargo.toml new file mode 100644 index 0000000..37668c4 --- /dev/null +++ b/examples/with-3rd-party/third-party-lib/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "third-party-lib" +version = "0.1.0" +edition = "2021" + +[dependencies] diff --git a/examples/with-3rd-party/third-party-lib/src/lib.rs b/examples/with-3rd-party/third-party-lib/src/lib.rs new file mode 100644 index 0000000..f3b3ed3 --- /dev/null +++ b/examples/with-3rd-party/third-party-lib/src/lib.rs @@ -0,0 +1,23 @@ +pub trait IShuriken +{ + fn throw(&self); +} + +pub struct Shuriken {} + +impl Shuriken +{ + #[allow(clippy::new_without_default)] + pub fn new() -> Self + { + Self {} + } +} + +impl IShuriken for Shuriken +{ + fn throw(&self) + { + println!("Threw shuriken!"); + } +} -- cgit v1.2.3-18-g5258