mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-12-10 13:46:13 +08:00
Kino_db - snowflake (#2187)
This commit is contained in:
parent
91b474f073
commit
134eb2c025
2 changed files with 11 additions and 3 deletions
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
```elixir
|
||||
Mix.install([
|
||||
{:kino_explorer, "~> 0.1.4"}
|
||||
{:kino_explorer, "~> 0.1.9"}
|
||||
])
|
||||
```
|
||||
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ defmodule Livebook.Runtime.Definitions do
|
|||
|
||||
kino_db = %{
|
||||
name: "kino_db",
|
||||
dependency: %{dep: {:kino_db, "~> 0.2.1"}, config: []}
|
||||
dependency: %{dep: {:kino_db, "~> 0.2.2"}, config: []}
|
||||
}
|
||||
|
||||
kino_maplibre = %{
|
||||
|
|
@ -43,7 +43,7 @@ defmodule Livebook.Runtime.Definitions do
|
|||
|
||||
kino_explorer = %{
|
||||
name: "kino_explorer",
|
||||
dependency: %{dep: {:kino_explorer, "~> 0.1.4"}, config: []}
|
||||
dependency: %{dep: {:kino_explorer, "~> 0.1.9"}, config: []}
|
||||
}
|
||||
|
||||
jason = %{
|
||||
|
|
@ -98,6 +98,14 @@ defmodule Livebook.Runtime.Definitions do
|
|||
%{name: "postgrex", dependency: %{dep: {:postgrex, "~> 0.16.3"}, config: []}}
|
||||
]
|
||||
},
|
||||
%{
|
||||
name: "Snowflake",
|
||||
packages: [
|
||||
kino_db,
|
||||
kino_explorer,
|
||||
%{name: "adbc", dependency: %{dep: {:adbc, "~> 0.1.1"}, config: []}}
|
||||
]
|
||||
},
|
||||
%{
|
||||
name: "SQLite",
|
||||
packages: [
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue