Skip to content

Commit f17307e

Browse files
authored
fix(serverless): support rust179 instead of rust178 (#559)
1 parent 04330fc commit f17307e

File tree

2 files changed

+2
-2
lines changed
  • scaleway-async/scaleway_async/function/v1beta1
  • scaleway/scaleway/function/v1beta1

2 files changed

+2
-2
lines changed

scaleway-async/scaleway_async/function/v1beta1/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ class FunctionRuntime(str, Enum, metaclass=StrEnumMeta):
8888
PYTHON312 = "python312"
8989
PHP83 = "php83"
9090
GO122 = "go122"
91-
RUST178 = "rust178"
91+
RUST179 = "rust179"
9292

9393
def __str__(self) -> str:
9494
return str(self.value)

scaleway/scaleway/function/v1beta1/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ class FunctionRuntime(str, Enum, metaclass=StrEnumMeta):
8888
PYTHON312 = "python312"
8989
PHP83 = "php83"
9090
GO122 = "go122"
91-
RUST178 = "rust178"
91+
RUST179 = "rust179"
9292

9393
def __str__(self) -> str:
9494
return str(self.value)

0 commit comments

Comments
 (0)