You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

96 lines
2.3 KiB
TOML

[package]
authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2021"
3 years ago
name = "skyd"
version = "0.8.1"
description = "Skytable is a modern NoSQL database powered by BlueQL that aims to deliver performance, scalability and flexibility with data"
license = "AGPL-3.0"
build = "build.rs"
[build-dependencies]
libsky = { path = "../libsky" }
[dependencies]
# internal deps
3 years ago
libsky = { path = "../libsky" }
sky_macros = { path = "../sky-macros" }
2 years ago
rcrypt = "0.4.0"
# external deps
bytes = "1.6.0"
6 months ago
env_logger = "0.11.3"
log = "0.4.21"
7 months ago
openssl = { version = "0.10.64", features = ["vendored"] }
8 months ago
crossbeam-epoch = { version = "0.9.18" }
parking_lot = "0.12.1"
serde = { version = "1.0.197", features = ["derive"] }
tokio = { version = "1.37.0", features = ["full"] }
8 months ago
tokio-openssl = "0.6.4"
uuid = { version = "1.8.0", features = ["v4", "fast-rng", "macro-diagnostics"] }
crc = "3.0.1"
serde_yaml = "0.9.33"
chrono = "0.4.37"
[target.'cfg(all(not(target_env = "msvc"), not(miri)))'.dependencies]
# external deps
1 year ago
jemallocator = "0.5.4"
[target.'cfg(target_os = "windows")'.dependencies]
# external deps
6 months ago
windows = { version = "0.54.0", features = [
"Win32_Foundation",
"Win32_System_IO",
"Win32_Storage_FileSystem",
"Win32_System_SystemInformation",
] }
[target.'cfg(unix)'.dependencies]
# external deps
8 months ago
libc = "0.2.153"
[dev-dependencies]
# external deps
rand = "0.8.5"
tokio = { version = "1.37.0", features = ["test-util"] }
skytable = { git = "https://github.com/skytable/client-rust.git" }
[features]
nightly = []
persist-suite = []
[package.metadata.deb]
name = "skytable"
maintainer = "Sayan Nandan <nandansayan@outlook.com>"
6 months ago
copyright = "2024, Sayan Nandan <nandansayan@outlook.com>"
license-file = ["../LICENSE", "0"]
maintainer-scripts = "../pkg/debian/"
extended-description-file = "pkg/debian/description.txt"
depends = "$auto"
section = "database"
priority = "optional"
assets = [
[
"target/release/skyd",
"/usr/bin/skyd",
"755",
],
[
"target/release/skysh",
"/usr/bin/skysh",
"755",
],
[
"target/release/sky-bench",
"/usr/bin/sky-bench",
"755",
],
[
"../examples/config-files/dpkg/config.yaml",
"/var/lib/skytable/config.yaml.tmp",
8 months ago
"644",
],
[
"../pkg/common/skyd.service",
"/etc/systemd/system/skyd.service",
"644",
],
]