From ccb9d16e5dbe965e5a604e1cb402cd3bc7de0df5 Mon Sep 17 00:00:00 2001 From: Austin Hellyer Date: Mon, 5 Dec 2016 07:46:22 -0800 Subject: Add a ShareMap across contexts The context now exposes, through the Client, a `data` field, which can be accessed safely across contexts. This allows for a custom "shared state" without the need for (ab)using lazy-static.rs. Refer to example 06 for an example on how to use shared data. --- examples/06_command_framework/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) (limited to 'examples/06_command_framework/Cargo.toml') diff --git a/examples/06_command_framework/Cargo.toml b/examples/06_command_framework/Cargo.toml index 481dd6f..a73f940 100644 --- a/examples/06_command_framework/Cargo.toml +++ b/examples/06_command_framework/Cargo.toml @@ -3,6 +3,9 @@ name = "06_command_framework" version = "0.1.0" authors = ["my name "] +[dependencies] +typemap = "0.3" + [dependencies.serenity] features = ["framework", "methods"] version = "0.1" -- cgit v1.2.3