tachyon_types/lib.rs
1/// The tachyon-types crate version — the runner<->cell wire-contract version.
2/// Deployers (pulse-deploy's tachyon_runner role) assert a runner binary's
3/// reported VERSION matches the cell's pinned tachyon-types before installing.
4pub const VERSION: &str = env!("CARGO_PKG_VERSION");
5
6pub mod category;
7pub use category::*;
8
9pub mod inventory;
10pub use inventory::*;
11
12pub mod output;
13pub use output::*;
14
15pub mod playbook;
16pub use playbook::*;
17
18
19pub mod pin;
20pub use pin::*;
21
22pub mod run;
23pub use run::*;
24
25pub mod resource;
26pub use resource::*;
27
28pub mod commands;
29pub use commands::*;
30