veryl_metadata/
lib.rs

1mod build;
2mod build_info;
3mod doc;
4mod env_var;
5mod format;
6mod git;
7mod lint;
8mod lockfile;
9mod lockfile_compat;
10mod metadata;
11mod metadata_error;
12mod project;
13mod pubfile;
14mod publish;
15mod test;
16#[cfg(test)]
17mod tests;
18pub use build::{Build, BuiltinType, ClockType, FilelistType, ResetType, SourceMapTarget, Target};
19pub use build_info::BuildInfo;
20pub use doc::Doc;
21pub use env_var::EnvVar;
22pub use format::Format;
23pub use git::Git;
24pub use lint::{Case, Lint};
25pub use lockfile::{LockSource, Lockfile};
26pub use metadata::{BumpKind, Metadata, UrlPath};
27pub use metadata_error::MetadataError;
28pub use project::Project;
29pub use pubfile::{Pubfile, Release};
30pub use publish::Publish;
31pub use semver;
32pub use test::{SimType, Test, WaveFormFormat, WaveFormTarget};
33
34include!(concat!(env!("OUT_DIR"), "/veryl_version.rs"));