37 lines
1.3 KiB
TOML
37 lines
1.3 KiB
TOML
[package]
|
|
name = "chgk_ledb_lib"
|
|
version = "1.1.0"
|
|
authors = ["Dmitry <b4tm4n@mail.ru>"]
|
|
edition = "2021"
|
|
repository = "https://gitea.b4tman.ru/b4tman/chgk_ledb"
|
|
license = "MIT"
|
|
description = "Библиотека для доступа к файлу базы данных вопросов ЧГК"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
default = ["async"]
|
|
sync = ["zstd", "memmap"]
|
|
async = ["futures", "futures-core", "futures-util", "fmmap", "tokio", "async-compression", "async-stream"]
|
|
source = ["zip"]
|
|
|
|
[dependencies]
|
|
serde="1.0"
|
|
serde_derive="1.0"
|
|
serde_json="1.0"
|
|
bincode = "^2.0.0-rc.2"
|
|
zip= {version = "0.6", optional = true}
|
|
fmmap = { version = "0.3", features = ["tokio-async"] , optional = true}
|
|
tokio = { version = "1", features = ["fs","io-util","rt", "macros"] , optional = true}
|
|
futures-core = {version = "0.3", optional = true}
|
|
futures = {version = "0.3", optional = true}
|
|
futures-util = {version = "0.3", optional = true}
|
|
async-compression = {git="https://github.com/Nullus157/async-compression", rev="4fd4c42", default-features = false, features = ["zstdmt", "tokio"], optional = true}
|
|
async-stream = {version = "0.3", optional = true}
|
|
zstd = {version = "^0.12", default-features = false, optional = true}
|
|
memmap = {version = "0.7.0", optional = true}
|
|
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.3"
|