fidl_fuchsia_pkg_rewrite_ext/lib.rs
1// Copyright 2019 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#![warn(missing_docs)]
6
7//! Tools for handling Fuchsia URLs.
8
9mod rule;
10pub use crate::rule::{Rule, RuleConfig};
11
12mod errors;
13pub use crate::errors::{EditTransactionError, RuleDecodeError, RuleParseError};
14
15mod transaction;
16pub use crate::transaction::{do_transaction, EditTransaction};