vsomeip-sys 0.6.0

Somewhat low level unsafe wrapper around vsomeip
################################################################################
# Copyright (c) 2024 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
################################################################################

[package]
name = "vsomeip-sys"
description = "Somewhat low level unsafe wrapper around vsomeip"
documentation.workspace = true
edition.workspace = true
exclude.workspace = true
keywords.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true
readme = "README.md"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
default = ["bundled", "ssl"]
bundled = ["cmake"]
ssl = ["openssl-sys"]
vendored-ssl = ["bundled", "ssl", "openssl-sys/vendored"]

[dependencies]
autocxx = { version = "0.30.0" }
cxx = { version = "1.0.198" }
lazy_static = { workspace = true }
log = { workspace = true }
openssl-sys = { version = "0.9", optional = true }

[build-dependencies]
autocxx-build = { version = "0.30.0" }
cmake = { version = "0.1" , optional = true }
cxx-build = { version = "1.0.198" }
miette = { version = "5", features = ["fancy"] }