From f5b8b04d02ed8a8d80953e7d7ed97d4fdf20c380 Mon Sep 17 00:00:00 2001 From: Dr Maxim Orlovsky Date: Wed, 8 Nov 2023 16:57:07 +0100 Subject: [PATCH] chore: rename library to rgbstd to avoid conflicts with rgbcore --- Cargo.toml | 2 +- stl/src/main.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bb07e5fd..31058b66 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,7 +42,7 @@ rust-version = { workspace = true } readme = "README.md" [lib] -name = "rgb" +name = "rgbstd" crate-type = ["cdylib", "rlib"] # We need this for WASM [dependencies] diff --git a/stl/src/main.rs b/stl/src/main.rs index 7593d1ff..139409f3 100644 --- a/stl/src/main.rs +++ b/stl/src/main.rs @@ -20,8 +20,8 @@ // See the License for the specific language governing permissions and // limitations under the License. -use rgb::interface::{rgb20_stl, rgb21_stl, rgb25_stl}; -use rgb::stl::{rgb_contract_stl, rgb_std_stl}; +use rgbstd::interface::{rgb20_stl, rgb21_stl, rgb25_stl}; +use rgbstd::stl::{rgb_contract_stl, rgb_std_stl}; use strict_types::parse_args; fn main() {