chore: flat is taken in crates.io

This commit is contained in:
rvcas
2022-06-14 19:11:00 -04:00
parent f511dce353
commit f7fba12a5f
5 changed files with 7 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
use flat::de;
use flat_rs::de;
use strum_macros::EnumString;
/// All the possible builtin functions in Untyped Plutus Core.

View File

@@ -1,6 +1,6 @@
use std::fmt::Debug;
use flat::{
use flat_rs::{
de::{self, Decode, Decoder},
en::{self, Encode, Encoder},
Flat,
@@ -398,7 +398,7 @@ pub fn decode_constant_tag(d: &mut Decoder) -> Result<u8, de::Error> {
#[cfg(test)]
mod test {
use flat::Flat;
use flat_rs::Flat;
use crate::ast::Name;