DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

59108541f4b3b187ba42706194fed77ac6c28548 — Jonni Liljamo 1 year, 8 months ago eb6e401
chore: update licenses
M README.md => README.md +1 -1
@@ 1,4 1,4 @@
# Deck Builder
# Deck Builder (code-named 'laurelin')
See `dev` branch for latest changes.
---
A deck building game with multiplayer over a web API.

M api/Cargo.toml => api/Cargo.toml +6 -2
@@ 1,8 1,12 @@
[package]
name = "api"
version = "0.1.0"
authors = ["Jonni Liljamo <jonni@liljamo.com>"]
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
description = "API for a deck building game"
readme = "README.md"
repository = "https://git.src.quest/~skye/deck-builder/"
license = "GPL-3.0-only"
publish = false

[dependencies]

A api/LICENSE => api/LICENSE +8 -0
@@ 0,0 1,8 @@
An API for a deck building game.
Copyright (C) 2023 Jonni Liljamo <jonni@liljamo.com>

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program.  If not, see <http://www.gnu.org/licenses/>.

M api/src/main.rs => api/src/main.rs +8 -0
@@ 1,3 1,11 @@
/*
 * This file is part of laurelin/api
 * Copyright (C) 2023 Jonni Liljamo <jonni@liljamo.com>
 *
 * Licensed under GPL-3.0-only.
 * See LICENSE for licensing information.
 */

fn main() {
    println!("Hello, world!");
}

M client/Cargo.toml => client/Cargo.toml +1 -0
@@ 7,6 7,7 @@ description = "Client for a deck building game"
readme = "README.md"
repository = "https://git.src.quest/~skye/deck-builder/"
license = "GPL-3.0-only"
publish = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html


M client/src/main.rs => client/src/main.rs +1 -1
@@ 1,5 1,5 @@
/*
 * This file is part of sdbclient
 * This file is part of laurelin/client
 * Copyright (C) 2023 Jonni Liljamo <jonni@liljamo.com>
 *
 * Licensed under GPL-3.0-only.

M server/Cargo.toml => server/Cargo.toml +6 -2
@@ 1,8 1,12 @@
[package]
name = "server"
version = "0.1.0"
authors = ["Jonni Liljamo <jonni@liljamo.com>"]
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
description = "Server for a deck building game"
readme = "README.md"
repository = "https://git.src.quest/~skye/deck-builder/"
license = "GPL-3.0-only"
publish = false

[dependencies]

A server/LICENSE => server/LICENSE +8 -0
@@ 0,0 1,8 @@
A server for a deck building game.
Copyright (C) 2023 Jonni Liljamo <jonni@liljamo.com>

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program.  If not, see <http://www.gnu.org/licenses/>.

M server/src/main.rs => server/src/main.rs +8 -0
@@ 1,3 1,11 @@
/*
 * This file is part of laurelin/server
 * Copyright (C) 2023 Jonni Liljamo <jonni@liljamo.com>
 *
 * Licensed under GPL-3.0-only.
 * See LICENSE for licensing information.
 */

fn main() {
    println!("Hello, world!");
}

M shared/Cargo.toml => shared/Cargo.toml +6 -2
@@ 1,8 1,12 @@
[package]
name = "shared"
version = "0.1.0"
authors = ["Jonni Liljamo <jonni@liljamo.com>"]
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
description = "Shared components for a deck building game"
readme = "README.md"
repository = "https://git.src.quest/~skye/deck-builder/"
license = "GPL-3.0-only"
publish = false

[dependencies]

A shared/LICENSE => shared/LICENSE +8 -0
@@ 0,0 1,8 @@
Shared components for a deck building game.
Copyright (C) 2023 Jonni Liljamo <jonni@liljamo.com>

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program.  If not, see <http://www.gnu.org/licenses/>.

M shared/src/lib.rs => shared/src/lib.rs +8 -0
@@ 1,3 1,11 @@
/*
 * This file is part of laurelin/shared
 * Copyright (C) 2023 Jonni Liljamo <jonni@liljamo.com>
 *
 * Licensed under GPL-3.0-only.
 * See LICENSE for licensing information.
 */

pub fn add(left: usize, right: usize) -> usize {
    left + right
}