diff --git a/Cargo.lock b/Cargo.lock index c433c20..26ba6c2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2378,9 +2378,9 @@ dependencies = [ [[package]] name = "momento" -version = "0.60.0" +version = "0.61.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbfa38e867bfaa85e3c3a37b0646234965434381551c7dfb367423e62135d8cc" +checksum = "5bb9504b110f5084c95af67e0eaf42d8810b02c25951faf994da11a83da33bc1" dependencies = [ "base64 0.22.1", "derive_more", @@ -2452,9 +2452,9 @@ dependencies = [ [[package]] name = "momento-protos" -version = "0.127.4" +version = "0.128.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30ee93d06065842efd655784f5fa78f75e0865038f78a6d385236ae6c6838b2c" +checksum = "3b06b41c5c34c07bc99048f38cdf073467414460bb5fa6231fb45971d68dec06" dependencies = [ "prost", "protosocket-rpc", diff --git a/momento/Cargo.toml b/momento/Cargo.toml index 0b6c001..ce9bb96 100644 --- a/momento/Cargo.toml +++ b/momento/Cargo.toml @@ -41,7 +41,7 @@ features = [ "macros",] path = "../momento-cli-opts" [dependencies.momento] -version = "0.60.0" +version = "0.61.0" [dependencies.futures] version = "0.3.28" diff --git a/momento/src/commands/functions/function_cli.rs b/momento/src/commands/functions/function_cli.rs index 54705dc..a541f6b 100644 --- a/momento/src/commands/functions/function_cli.rs +++ b/momento/src/commands/functions/function_cli.rs @@ -96,11 +96,12 @@ pub async fn list_functions(client: FunctionClient, cache_name: String) -> Resul console_data!("Functions in cache namespace: {cache_name}"); functions_list.iter().for_each(|function| { console_data!( - "Name: {}, ID: {}, Version: {}, Description: {}", + "Name: {}, ID: {}, Version: {}, Description: {}, Last Updated: {}", function.name(), function.function_id(), function.version(), - function.description() + function.description(), + function.last_updated_at(), ) }); }