From 7cf0dc6411ec0f8c252973a7795685ccb26f35b7 Mon Sep 17 00:00:00 2001 From: megrogan Date: Mon, 23 Dec 2024 14:27:13 +0000 Subject: [PATCH] bump --- backend/bots/examples/greet/can.did | 16 -------------- backend/bots/examples/greet/cargo.toml | 29 -------------------------- 2 files changed, 45 deletions(-) delete mode 100644 backend/bots/examples/greet/cargo.toml diff --git a/backend/bots/examples/greet/can.did b/backend/bots/examples/greet/can.did index 55cd2bbb0f..22da1208bd 100644 --- a/backend/bots/examples/greet/can.did +++ b/backend/bots/examples/greet/can.did @@ -1,18 +1,2 @@ -type BotApiCallResponse = variant { - Ok; - Err : variant { - Invalid : text; - CanisterError : variant { - NotAuthorized; - Frozen; - Other : text; - }; - C2CError: record { - 0 : nat32; - 1 : text; - }; - }; -}; - service : { }; diff --git a/backend/bots/examples/greet/cargo.toml b/backend/bots/examples/greet/cargo.toml deleted file mode 100644 index 1c923e1d81..0000000000 --- a/backend/bots/examples/greet/cargo.toml +++ /dev/null @@ -1,29 +0,0 @@ -[package] -name = "greet_bot_canister_impl" -version = "0.1.0" -edition = "2021" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - -[lib] -path = "src/lib.rs" -crate-type = ["cdylib"] - -[dependencies] -candid = { workspace = true } -canister_client = { path = "../../../libraries/canister_client" } -getrandom = { workspace = true } -http = { workspace = true } -ic-cdk = { workspace = true } -ic-cdk-timers = { workspace = true } -ic-http-certification = { workspace = true } -ic_principal = { workspace = true } -ic-stable-structures = { workspace = true } -jwt = { path = "../../../libraries/jwt" } -local_user_index_canister = { path = "../../../canisters/local_user_index/api" } -local_user_index_canister_c2c_client = { path = "../../../canisters/local_user_index/c2c_client" } -msgpack = { path = "../../../libraries/msgpack" } -rmp-serde = { workspace = true } -serde = { workspace = true } -serde_json = { workspace = true } -types = { path = "../../../libraries/types" }