marine_rs_sdk_test/
lib.rs

1/*
2 * Copyright 2020 Fluence Labs Limited
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *     http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#![doc(html_root_url = "https://docs.rs/marine-rs-sdk-test/0.8.1")]
18#![deny(
19    dead_code,
20    nonstandard_style,
21    unused_imports,
22    unused_mut,
23    unused_variables,
24    unused_unsafe,
25    unreachable_patterns
26)]
27#![warn(rust_2018_idioms)]
28
29pub use marine_test_macro::marine_test;
30pub use marine_test_macro::fce_test;
31
32pub use marine_build_rs_generator::generate_marine_test_env;
33pub use marine_build_rs_generator::ServiceDescription;
34pub use marine_build_rs_generator::include_test_env;
35
36pub use fluence_app_service::CallParameters;
37pub use fluence_app_service::ParticleParameters;
38pub use fluence_app_service::SecurityTetraplet;
39
40/// These API functions are intended for internal usage in generated code.
41/// Normally, you shouldn't use them.
42pub mod internal {
43    pub use fluence_app_service::AppService;
44    pub use fluence_app_service::TomlAppServiceConfig;
45
46    pub use serde;
47    pub use serde_json;
48
49    pub use uuid::Uuid;
50}