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") {

0 commit comments

Comments
 (0)