surrealpatch/lib/Cargo.toml

88 lines
3.4 KiB
TOML
Raw Normal View History

[package]
name = "surrealdb"
publish = true
edition = "2021"
2022-09-30 21:33:00 +00:00
version = "1.0.0-beta.8"
2022-07-19 00:37:56 +00:00
readme = "CARGO.md"
authors = ["Tobie Morgan Hitchcock <tobie@surrealdb.com>"]
2022-07-19 00:37:56 +00:00
description = "A scalable, distributed, collaborative, document-graph database, for the realtime web"
repository = "https://github.com/surrealdb/surrealdb"
homepage = "https://github.com/surrealdb/surrealdb"
2022-08-09 10:32:06 +00:00
documentation = "https://docs.rs/surrealdb/"
2022-07-19 00:37:56 +00:00
keywords = ["database", "embedded-database", "key-value", "key-value-store", "kv-store"]
categories = ["database-implementations", "data-structures", "embedded"]
license = "Apache-2.0"
[features]
default = ["parallel", "kv-mem", "kv-rocksdb", "scripting", "http"]
parallel = ["dep:executor"]
kv-tikv = ["dep:tikv"]
kv-fdb-5_1 = ["foundationdb/fdb-5_1", "kv-fdb"]
kv-fdb-5_2 = ["foundationdb/fdb-5_2", "kv-fdb"]
kv-fdb-6_0 = ["foundationdb/fdb-6_0", "kv-fdb"]
kv-fdb-6_1 = ["foundationdb/fdb-6_1", "kv-fdb"]
kv-fdb-6_2 = ["foundationdb/fdb-6_2", "kv-fdb"]
kv-fdb-6_3 = ["foundationdb/fdb-6_3", "kv-fdb"]
kv-fdb-7_0 = ["foundationdb/fdb-7_0", "kv-fdb"]
kv-fdb-7_1 = ["foundationdb/fdb-7_1", "kv-fdb"]
kv-mem = ["dep:echodb"]
kv-indxdb = ["dep:indxdb"]
kv-rocksdb = ["dep:rocksdb"]
scripting = ["dep:js", "dep:executor"]
http = ["dep:surf"]
# This is an internal feature. It shouldn't be activated directly.
# One of the `kv-fdb-*` features that specify the version to use must be used instead.
kv-fdb = ["foundationdb"]
[dependencies]
addr = { version = "0.15.6", default-features = false, features = ["std"] }
2022-07-04 00:59:02 +00:00
argon2 = "0.4.1"
async-recursion = "1.0.0"
bigdecimal = { version = "0.3.0", features = ["serde", "string-only"] }
2022-08-10 22:45:13 +00:00
channel = { version = "1.7.1", package = "async-channel" }
2022-08-17 21:42:29 +00:00
chrono = { version = "0.4.22", features = ["serde"] }
2022-09-20 17:13:07 +00:00
derive = { version = "0.4.0", package = "surrealdb-derive" }
2022-08-23 22:52:43 +00:00
deunicode = "1.3.2"
dmp = "0.1.1"
echodb = { version = "0.3.0", optional = true }
executor = { version = "1.4.1", package = "async-executor", optional = true }
2022-08-29 16:34:18 +00:00
futures = "0.3.24"
foundationdb = { version = "0.7.0", default-features = false, features = ["embedded-fdb-include"], optional = true }
fuzzy-matcher = "0.3.7"
2022-09-20 17:13:07 +00:00
geo = { version = "0.23.0", features = ["use-serde"] }
indxdb = { version = "0.2.0", optional = true }
js = { version = "0.1.7", package = "rquickjs", features = ["bindgen", "classes", "futures", "loader", "macro", "properties", "parallel"], optional = true }
lexical-sort = "0.3.1"
2022-05-05 11:40:05 +00:00
log = "0.4.17"
md-5 = "0.10.5"
2022-09-30 21:24:22 +00:00
msgpack = { version = "1.1.1", package = "rmp-serde" }
nanoid = "0.4.0"
nom = { version = "7.1.1", features = ["alloc"] }
once_cell = "1.15.0"
2022-04-01 21:04:11 +00:00
pbkdf2 = "0.11.0"
rand = "0.8.5"
2022-07-07 10:37:02 +00:00
regex = "1.6.0"
rocksdb = { version = "0.19.0", optional = true }
2022-04-01 21:04:11 +00:00
scrypt = "0.10.0"
2022-09-17 23:26:52 +00:00
semver = { version = "1.0.14", default-features = false }
serde = { version = "1.0.145", features = ["derive"] }
sha-1 = "0.10.0"
2022-09-17 23:26:52 +00:00
sha2 = "0.10.6"
storekey = "0.3.0"
2022-09-30 21:24:22 +00:00
thiserror = "1.0.37"
tikv = { version = "0.1.0", package = "tikv-client", optional = true }
trice = "0.1.0"
2022-09-17 23:26:52 +00:00
url = "2.3.1"
uuid = { version = "1.2.1", features = ["serde", "v4", "v7"] }
bcrypt = "0.13.0"
[dev-dependencies]
2022-09-30 21:24:22 +00:00
tokio = { version = "1.21.2", features = ["macros", "rt"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
surf = { version = "2.3.2", optional = true, default-features = false, features = ["encoding", "wasm-client"] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
surf = { version = "2.3.2", optional = true, default-features = false, features = ["encoding", "curl-client"] }