tinc_pb_prost/
lib.rs

1//! Protobuf Compiled Definitions for Tinc
2#![cfg_attr(feature = "docs", doc = "\n\nSee the [changelog][changelog] for a full release history.")]
3#![cfg_attr(feature = "docs", doc = "## Feature flags")]
4#![cfg_attr(feature = "docs", doc = document_features::document_features!())]
5//! ## License
6//!
7//! This project is licensed under the MIT or Apache-2.0 license.
8//! You can choose between one of them if you use this work.
9//!
10//! `SPDX-License-Identifier: MIT OR Apache-2.0`
11#![cfg_attr(all(coverage_nightly, test), feature(coverage_attribute))]
12#![cfg_attr(docsrs, feature(doc_auto_cfg))]
13#![allow(clippy::all)]
14#![deny(unsafe_code)]
15#![deny(unreachable_pub)]
16
17include!(concat!(env!("OUT_DIR"), "/tinc.rs"));
18
19/// The raw protobuf file
20pub const TINC_ANNOTATIONS: &str = include_str!("../annotations.proto");
21/// Path to the pre-compiled field-descriptors
22pub const TINC_ANNOTATIONS_PB_PATH: &str = concat!(env!("OUT_DIR"), "/tinc.annotations.pb");
23/// Field descriptor binary
24pub const TINC_ANNOTATIONS_PB: &[u8] = include_bytes!(concat!(env!("OUT_DIR"), "/tinc.annotations.pb"));
25
26/// Changelogs generated by [scuffle_changelog]
27#[cfg(feature = "docs")]
28#[scuffle_changelog::changelog]
29pub mod changelog {}