Skip to content

Commit e4049dd

Browse files
committed
changed project name
1 parent cab73c1 commit e4049dd

File tree

17 files changed

+42
-74
lines changed

17 files changed

+42
-74
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
2-
name = "rapid_naive_sql"
2+
name = "jsdb"
33
version = "0.3.0-alpha"
44
authors = ["Andrew Kushyk <akushyk799 at gmail.com>"]
55
edition = "2024"
6-
description = "Rapid Naive SQL is a database API designed for high-performance data management"
6+
description = "JSDB - Just a Simple DataBase is a database API designed for high-performance data management"
77
license = "GPL-3.0-or-later"
88
repository = "https://gitlab.com/git-user-cpp/rapid_naive_sql"
99

Makefile

Lines changed: 0 additions & 33 deletions
This file was deleted.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# JSDB - Just Simple DataBase
1+
# JSDB - Just a Simple DataBase
22

33
Simple Database implemented in Rust.
44

@@ -15,8 +15,8 @@ Simple Database implemented in Rust.
1515

1616
## ⚠️ LICENSE ⚠️
1717

18-
JSDB - Just Simple DataBase.
19-
Copyright (C) 2024 Andrew Kushyk
18+
JSDB - Just a Simple DataBase.
19+
Copyright (C) 2025 Andrew Kushyk
2020

2121
This program is free software: you can redistribute it and/or modify
2222
it under the terms of the GNU General Public License as published by

images/large_logo.png

-826 KB
Binary file not shown.

images/medium_logo.png

-303 KB
Binary file not shown.

images/small_logo.png

-53 KB
Binary file not shown.

src/database.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* NaiveSQL implemented in Rust.
2+
* JSDB - Just Simple DataBase.
33
* Copyright (C) 2024-2025 Andrew Kushyk
44
*
55
* This program is free software: you can redistribute it and/or modify

src/database/database.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* NaiveSQL implemented in Rust.
2+
* JSDB - Just Simple DataBase.
33
* Copyright (C) 2024-2025 Andrew Kushyk
44
*
55
* This program is free software: you can redistribute it and/or modify
@@ -24,10 +24,10 @@ use std::collections::HashMap;
2424
/// # Examples
2525
///
2626
/// ```
27-
/// use rapid_naive_sql::RNSQL;
28-
/// use rapid_naive_sql::database::table::Table;
27+
/// use jsdb::JSDB;
28+
/// use jsdb::database::table::Table;
2929
///
30-
/// let mut project: RNSQL<String> = RNSQL::new();
30+
/// let mut project: JSDB<String> = JSDB::new();
3131
/// if let Some(database) = project.databases.get_mut("database name") {
3232
/// let tb1 = Table::create_table();
3333
/// database.add_table("table name", tb1);

src/database/row.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* NaiveSQL implemented in Rust.
2+
* JSDB - Just Simple DataBase.
33
* Copyright (C) 2024-2025 Andrew Kushyk
44
*
55
* This program is free software: you can redistribute it and/or modify
@@ -23,9 +23,9 @@ use std::collections::HashMap;
2323
/// # Examples
2424
///
2525
/// ```
26-
/// use rapid_naive_sql::RNSQL;
26+
/// use jsdb::JSDB;
2727
///
28-
/// let mut project = RNSQL::new();
28+
/// let mut project = JSDB::new();
2929
///
3030
/// if let Some(database) = project.databases.get_mut("database name") {
3131
/// if let Some(table) = database.tables.get_mut("table name") {

src/database/table.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* NaiveSQL implemented in Rust.
2+
* JSDB - Just Simple DataBase.
33
* Copyright (C) 2024-2025 Andrew Kushyk
44
*
55
* This program is free software: you can redistribute it and/or modify
@@ -24,10 +24,10 @@ use std::collections::HashMap;
2424
/// # Examples
2525
///
2626
/// ```
27-
/// use rapid_naive_sql::RNSQL;
28-
/// use rapid_naive_sql::database::row::Row;
27+
/// use jsdb::JSDB;
28+
/// use jsdb::database::row::Row;
2929
///
30-
/// let mut project: RNSQL<String> = RNSQL::new();
30+
/// let mut project: JSDB<String> = JSDB::new();
3131
///
3232
/// if let Some(database) = project.databases.get_mut("database name") {
3333
/// if let Some(table) = database.tables.get_mut("table name") {

src/functionality.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* NaiveSQL implemented in Rust.
2+
* JSDB - Just Simple DataBase.
33
* Copyright (C) 2024-2025 Andrew Kushyk
44
*
55
* This program is free software: you can redistribute it and/or modify

src/functionality/database.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* NaiveSQL implemented in Rust.
2+
* JSDB - Just Simple DataBase.
33
* Copyright (C) 2024-2025 Andrew Kushyk
44
*
55
* This program is free software: you can redistribute it and/or modify

src/lib.rs

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* NaiveSQL implemented in Rust.
3-
* Copyright (C) 2024 Andrew Kushyk
2+
* JSDB - Just Simple DataBase.
3+
* Copyright (C) 2024-2025 Andrew Kushyk
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by
@@ -16,34 +16,35 @@
1616
* along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
1818

19-
//! # Rapid Naive SQL
19+
//! # Just a Simple DataBase
2020
//!
21-
//! `Rapid Naive SQL` is a database API designed for high-performance data management
21+
//! `JSDB` is a database API designed for high-performance data management
2222
23-
use database::database::Database;
24-
use std::collections::HashMap;
2523
pub mod database;
2624
pub mod functionality;
2725
pub mod queries;
2826

27+
use database::database::Database;
28+
use std::collections::HashMap;
29+
2930
/// Creates environment for holding databases
3031
///
3132
/// # Examples
3233
///
3334
/// ```
34-
/// use rapid_naive_sql::RNSQL;
35-
/// use rapid_naive_sql::database::database::Database;
35+
/// use jsdb::JSDB;
36+
/// use jsdb::database::database::Database;
3637
///
37-
/// let mut project: RNSQL<String> = RNSQL::new();
38+
/// let mut project: JSDB<String> = JSDB::new();
3839
/// let db1 = Database::create_database();
3940
/// project.add_database("database name", db1);
4041
/// ```
4142
#[derive(Debug)]
42-
pub struct RNSQL<Value> {
43+
pub struct JSDB<Value> {
4344
pub databases: HashMap<String, Database<Value>>,
4445
}
4546

46-
impl<Value> RNSQL<Value> {
47+
impl<Value> JSDB<Value> {
4748
/// Creates an empty environment for holding databases
4849
pub fn new() -> Self {
4950
Self {

src/main.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* NaiveSQL implemented in Rust.
3-
* Copyright (C) 2024 Andrew Kushyk
2+
* JSDB - Just Simple DataBase.
3+
* Copyright (C) 2024-2025 Andrew Kushyk
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by
@@ -16,18 +16,18 @@
1616
* along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
1818

19-
use rapid_naive_sql::RNSQL;
20-
use rapid_naive_sql::database::database::Database;
21-
use rapid_naive_sql::database::row::Row;
22-
use rapid_naive_sql::database::table::Table;
19+
use jsdb::JSDB;
20+
use jsdb::database::database::Database;
21+
use jsdb::database::row::Row;
22+
use jsdb::database::table::Table;
2323

2424
fn main() {
2525
const DB_NAME: &str = "db1";
2626
const TB_NAME: &str = "tb1";
2727
const RW_NAME: u32 = 1;
2828
const CL_NAME: &str = "cl1";
2929

30-
let mut project = RNSQL::new();
30+
let mut project = JSDB::new();
3131

3232
println!("{:#?}\n\n", project);
3333

src/queries.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* NaiveSQL implemented in Rust.
2+
* JSDB - Just Simple DataBase.
33
* Copyright (C) 2024-2025 Andrew Kushyk
44
*
55
* This program is free software: you can redistribute it and/or modify

src/queries/parser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* NaiveSQL implemented in Rust.
2+
* JSDB - Just Simple DataBase.
33
* Copyright (C) 2024-2025 Andrew Kushyk
44
*
55
* This program is free software: you can redistribute it and/or modify

0 commit comments

Comments
 (0)