violet/lib.rs
1// Ultraviolet: post-blockchain P2P smart contracts
2//
3// SPDX-License-Identifier: Apache-2.0
4//
5// Designed in 2019-2024 by Dr Maxim Orlovsky <orlovsky@uviolet.net>
6// Written in 2024 by Dr Maxim Orlovsky <orlovsky@uviolet.net>
7//
8// Copyright (C) 2024-2025 Ultraviolet Alliance. All rights reserved.
9//
10// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
11// in compliance with the License. You may obtain a copy of the License at
12//
13// http://www.apache.org/licenses/LICENSE-2.0
14//
15// Unless required by applicable law or agreed to in writing, software distributed under the License
16// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
17// or implied. See the License for the specific language governing permissions and limitations under
18// the License.
19
20#![cfg_attr(docsrs, feature(doc_auto_cfg))]
21
22#[macro_use]
23extern crate amplify;
24#[macro_use]
25extern crate strict_types;
26
27#[cfg(feature = "serde")]
28#[macro_use]
29extern crate serde;