multiversx_sc_meta_lib/
cargo_toml.rs

1
2
3
4
5
6
7
8
9
10
11
12
mod cargo_toml_contents;
mod cargo_toml_deps;
mod cargo_toml_deps_raw;
mod version_req;

pub use cargo_toml_contents::{
    change_from_base_to_adapter_path, CargoTomlContents, CARGO_TOML_DEPENDENCIES,
    CARGO_TOML_DEV_DEPENDENCIES,
};
pub use cargo_toml_deps::{DependencyReference, GitCommitReference};
pub use cargo_toml_deps_raw::DependencyRawValue;
pub use version_req::VersionReq;