forked from mirrors/gecko-dev
This updates all crates that can be updated with no addition of new crates, that start with letter a. Differential Revision: https://phabricator.services.mozilla.com/D133027
6 lines
85 B
Rust
6 lines
85 B
Rust
use anyhow::{ensure, Result};
|
|
|
|
fn main() -> Result<()> {
|
|
ensure!();
|
|
Ok(())
|
|
}
|