27 lines
703 B
TOML
27 lines
703 B
TOML
[package]
|
|
name = "sal-redisclient"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["PlanetFirst <info@incubaid.com>"]
|
|
description = "SAL Redis Client - Redis client wrapper with connection management and Rhai integration"
|
|
repository = "https://git.threefold.info/herocode/sal"
|
|
license = "Apache-2.0"
|
|
keywords = ["redis", "client", "database", "cache"]
|
|
categories = ["database", "caching", "api-bindings"]
|
|
|
|
[dependencies]
|
|
# Core Redis functionality
|
|
redis = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
|
|
# Rhai integration (optional)
|
|
rhai = { workspace = true, optional = true }
|
|
|
|
[features]
|
|
default = ["rhai"]
|
|
rhai = ["dep:rhai"]
|
|
|
|
[dev-dependencies]
|
|
# For testing
|
|
tempfile = { workspace = true }
|