-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgleam.toml
34 lines (30 loc) · 872 Bytes
/
gleam.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name = "radish"
version = "0.16.0"
description = "A Gleam client for Valkey, KeyDB, Redis and other tools with compatible APIs"
gleam = ">= 0.32.0"
licences = ["Apache-2.0"]
links = [
{ title = "Gleam", href = "https://gleam.run" },
{ title = "KeyDB", href = "https://keydb.dev" },
{ title = "Valkey", href = "https://github.com/valkey-io/valkey" },
{ title = "Redis", href = "https://redis.io" },
]
repository = { type = "github", user = "massivefermion", repo = "radish" }
internal_modules = [
"radish/tcp",
"radish/resp",
"radish/utils",
"radish/client",
"radish/encoder",
"radish/decoder",
"radish/command",
"radish/command/*",
]
[dependencies]
gleam_erlang = "~> 0.33"
gleam_otp = "~> 0.16"
gleam_stdlib = "~> 0.51 or ~> 1.0"
mug = "~> 1.2"
lifeguard = ">= 1.1.0 and < 2.0.0"
[dev-dependencies]
gleeunit = "~> 1.2"