Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.57 to 0.10.60. - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.57...openssl-v0.10.60) --- updated-dependencies: - dependency-name: openssl dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
57 lines
1.2 KiB
TOML
57 lines
1.2 KiB
TOML
[package]
|
|
name = "synapse_auto_compressor"
|
|
authors = ["William Ashton"]
|
|
version = "0.1.3"
|
|
edition = "2018"
|
|
|
|
[[bin]]
|
|
name = "synapse_auto_compressor"
|
|
required-features = ["clap"]
|
|
|
|
[package.metadata.maturin]
|
|
requires-python = ">=3.7"
|
|
project-url = {Source = "https://github.com/matrix-org/rust-synapse-compress-state"}
|
|
classifier = [
|
|
"Development Status :: 4 - Beta",
|
|
"Programming Language :: Rust",
|
|
]
|
|
|
|
[dependencies]
|
|
openssl = { version = "0.10.60", features = ["vendored"] }
|
|
postgres = "0.19.7"
|
|
postgres-openssl = "0.5.0"
|
|
rand = "0.8.5"
|
|
serial_test = "2.0.0"
|
|
synapse_compress_state = { path = "../", features = ["no-progress-bars"], default-features = false }
|
|
env_logger = "0.10.0"
|
|
log = "0.4.20"
|
|
log-panics = "2.1.0"
|
|
anyhow = "1.0.75"
|
|
|
|
# Needed for pyo3 support
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies.clap]
|
|
version = "4.4.2"
|
|
features = ["cargo"]
|
|
optional = true
|
|
|
|
[dependencies.pyo3]
|
|
version = "0.19.2"
|
|
features = ["extension-module"]
|
|
optional = true
|
|
|
|
[dependencies.pyo3-log]
|
|
version = "0.8.3"
|
|
optional = true
|
|
|
|
[dependencies.tikv-jemallocator]
|
|
version = "0.5.4"
|
|
optional = true
|
|
|
|
[features]
|
|
default = ["clap", "jemalloc"]
|
|
jemalloc = ["tikv-jemallocator", "synapse_compress_state/jemalloc"]
|
|
pyo3 = ["dep:pyo3", "dep:pyo3-log", "synapse_compress_state/pyo3"]
|