Skip to content

Commit

Permalink
short naming crate
Browse files Browse the repository at this point in the history
  • Loading branch information
0xh3rman committed Jan 19, 2024
1 parent 2baba17 commit e0e25a3
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 18 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ members = [
"fiat",
"name_resolver",
"api_connector",
"ns_address_codec",
"naming",
"parser",
"setup",
"settings",
Expand Down
2 changes: 1 addition & 1 deletion blockchain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ serde = { workspace = true }
serde_json = { workspace = true }
async-trait = { workspace = true }
primitives = { path = "../primitives" }
ns_address_codec = { path = "../ns_address_codec" }
naming = { path = "../naming" }
chrono = { workspace = true }
hex = { workspace = true }
num-bigint = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion blockchain/src/ton/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::error::Error;
use crate::ChainProvider;
use async_trait::async_trait;
use chrono::Utc;
use ns_address_codec::{codec::Codec, ton::TonCodec};
use naming::{codec::Codec, ton::TonCodec};
use primitives::{chain::Chain, TransactionState, TransactionType};

use reqwest_middleware::ClientWithMiddleware;
Expand Down
2 changes: 1 addition & 1 deletion name_resolver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ serde_json = { workspace = true }
reqwest = { workspace = true }
async-trait = { workspace = true }
primitives = { path = "../primitives" }
ns_address_codec = { path = "../ns_address_codec" }
naming = { path = "../naming" }
base64 = { workspace = true }
jsonrpsee = { workspace = true }
hex = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions name_resolver/src/ton.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use crate::client::NameClient;
use async_trait::async_trait;
use ns_address_codec::codec::Codec;
use ns_address_codec::ton;
use naming::codec::Codec;
use naming::ton;
use primitives::{
chain::Chain,
name::{NameProvider, NameRecord},
Expand Down
2 changes: 1 addition & 1 deletion ns_address_codec/Cargo.toml → naming/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "ns_address_codec"
name = "naming"
version = { workspace = true }
edition = { workspace = true }

Expand Down
2 changes: 1 addition & 1 deletion ns_address_codec/README.md → naming/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## ns_address_code
## naming

Address/Account codec library mainly for Naming Services in Rust

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit e0e25a3

Please sign in to comment.