mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-26 20:44:23 +01:00
26 lines
560 B
TOML
26 lines
560 B
TOML
[package]
|
|
name = "limbo_crypto"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Limbo crypto extension"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "lib"]
|
|
|
|
[features]
|
|
static= [ "turso_ext/static" ]
|
|
|
|
[dependencies]
|
|
blake3 = "1.5.5"
|
|
data-encoding = "2.7.0"
|
|
turso_ext = { workspace = true, features = ["static"] }
|
|
md5 = "0.7.0"
|
|
ring = "0.17.8"
|
|
urlencoding = "2.1.3"
|
|
|
|
[target.'cfg(not(target_family = "wasm"))'.dependencies]
|
|
mimalloc = { version = "0.1", default-features = false }
|