Skip to content

Commit a701424

Browse files
committed
project structure improved due to the new module style
1 parent 619ca47 commit a701424

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "rapid_naive_sql"
33
version = "0.3.0-alpha"
4-
authors = ["Andrew Kushyk <akushyk799 at proton.me>"]
5-
edition = "2021"
4+
authors = ["Andrew Kushyk <akushyk799 at gmail.com>"]
5+
edition = "2024"
66
description = "Rapid Naive SQL 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"

src/database/mod.rs renamed to src/database.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* NaiveSQL implemented in Rust.
3-
* Copyright (C) 2024 Andrew Kushyk
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

src/database/database.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* NaiveSQL implemented in Rust.
3-
* Copyright (C) 2024 Andrew Kushyk
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

src/database/row.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* NaiveSQL implemented in Rust.
3-
* Copyright (C) 2024 Andrew Kushyk
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

src/database/table.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* NaiveSQL implemented in Rust.
3-
* Copyright (C) 2024 Andrew Kushyk
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

src/functionality/mod.rs renamed to src/functionality.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* NaiveSQL implemented in Rust.
3-
* Copyright (C) 2024 Andrew Kushyk
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

src/functionality/database.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* NaiveSQL implemented in Rust.
3-
* Copyright (C) 2024 Andrew Kushyk
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

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
* along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
1818

19+
use rapid_naive_sql::RNSQL;
1920
use rapid_naive_sql::database::database::Database;
2021
use rapid_naive_sql::database::row::Row;
2122
use rapid_naive_sql::database::table::Table;
22-
use rapid_naive_sql::RNSQL;
2323

2424
fn main() {
2525
const DB_NAME: &str = "db1";

src/queries/mod.rs renamed to src/queries.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* NaiveSQL implemented in Rust.
3-
* Copyright (C) 2024 Andrew Kushyk
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

src/queries/parser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* NaiveSQL implemented in Rust.
3-
* Copyright (C) 2024 Andrew Kushyk
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

0 commit comments

Comments
 (0)