fennec_common/
lib.rs

1// Copyright 2023 Gregory Petrosyan <pgregory@pgregory.net>
2//
3// This Source Code Form is subject to the terms of the Mozilla Public
4// License, v. 2.0. If a copy of the MPL was not distributed with this
5// file, You can obtain one at https://mozilla.org/MPL/2.0/.
6
7#![forbid(unsafe_code)]
8
9pub mod types;
10pub mod util;
11pub mod workspace;
12
13mod import_path;
14mod sync_state;
15
16pub const PROJECT_NAME: &str = "fennec";
17pub const RELEASE_VERSION: &str = "0.1.8";
18pub const MODULE_MANIFEST_FILENAME: &str = "fennec.toml";
19pub const SOURCE_EXTENSION: &str = "fn";