summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjakka <jakka@jakka.su>2025-10-17 17:30:46 +0300
committerjakka <jakka@jakka.su>2025-10-17 17:30:46 +0300
commite311aad9357a38fd3d54aa3ce00ea98f0cf33ed7 (patch)
treed75c61c59c8d50003574f19109f26ddc86e31002
parentf76c055ed65f71a7b4f778bacb2b75ddd52f53e3 (diff)
changed crate name
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--tests/async.rs4
-rw-r--r--tests/sync.rs4
4 files changed, 6 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock
index ddaba9f..787ca9d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -375,7 +375,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
[[package]]
-name = "hydrus-api-rs"
+name = "hydrus_api"
version = "0.1.0"
dependencies = [
"async-trait",
diff --git a/Cargo.toml b/Cargo.toml
index 7abd94e..b89dcfb 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,5 +1,5 @@
[package]
-name = "hydrus-api-rs"
+name = "hydrus_api"
version = "0.1.0"
edition = "2024"
diff --git a/tests/async.rs b/tests/async.rs
index 1eddef1..46ffa42 100644
--- a/tests/async.rs
+++ b/tests/async.rs
@@ -1,5 +1,5 @@
-use hydrus_api_rs::async_lib::{client::*, traits::*};
-use hydrus_api_rs::types::*;
+use hydrus_api::async_lib::{client::*, traits::*};
+use hydrus_api::types::*;
use std::path::PathBuf;
fn init_client() -> HydrusClient {
diff --git a/tests/sync.rs b/tests/sync.rs
index 8981b6c..8228f08 100644
--- a/tests/sync.rs
+++ b/tests/sync.rs
@@ -1,5 +1,5 @@
-use hydrus_api_rs::sync_lib::client::HydrusClient;
-use hydrus_api_rs::sync_lib::traits::*;
+use hydrus_api::sync_lib::client::HydrusClient;
+use hydrus_api::sync_lib::traits::*;
use std::path::PathBuf;
fn init_client() -> HydrusClient {