Add more info to Cargo.toml

Updated my name for use in licensing text locally
Updated license header to fit with what should *hopefully* be merged into licenser soon
Regenerated license headers
Added readme
This commit is contained in:
mStar aka a person 2023-11-27 22:48:16 +01:00
parent cfa165ff96
commit f2b76465c6
8 changed files with 46 additions and 9 deletions

File diff suppressed because one or more lines are too long

View file

@ -2,7 +2,14 @@
name = "linstrom"
version = "0.1.0"
edition = "2021"
authors = ["mStar"]
license = "EUPL-1.2"
license-file = "LICENSE"
description = "An ActivityPub enabled social media server focused on helping with user safety"
readme = "README.md"
repository = "https://gitlab.com/mstarongitlab/linstrom"
exclude = ["/.vscode"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View file

@ -1,7 +1,3 @@
<!--
Copyright Melody 2023. Licensed under the EUPL-1.2 or later
-->
# UI
- Firefish like
- htmx

6
README.md Normal file
View file

@ -0,0 +1,6 @@
# Linstrom
An ActivityPub enabled social media server
## Goals
- A server for interacting with other ActivityPub enabled servers, also known as the fediverse
- Provide powerful, yet easy to use moderation tools for both admins and users to support the effort of keeping the users safe

View file

@ -1,4 +1,11 @@
// Copyright Melody 2023. Licensed under the EUPL-1.2 or later
// Copyright (c) 2023 mStar
//
// Licensed under the EUPL, Version 1.2
//
// You may not use this work except in compliance with the Licence.
// You should have received a copy of the Licence along with this work. If not, see:
// <https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12>.
// See the Licence for the specific language governing permissions and limitations under the Licence.
mod storage;

View file

@ -1,4 +1,11 @@
// Copyright Melody 2023. Licensed under the EUPL-1.2 or later
// Copyright (c) 2023 mStar
//
// Licensed under the EUPL, Version 1.2
//
// You may not use this work except in compliance with the Licence.
// You should have received a copy of the Licence along with this work. If not, see:
// <https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12>.
// See the Licence for the specific language governing permissions and limitations under the Licence.
use tokio::fs::File;

View file

@ -1,4 +1,11 @@
// Copyright Melody 2023. Licensed under the EUPL-1.2 or later
// Copyright (c) 2023 mStar
//
// Licensed under the EUPL, Version 1.2
//
// You may not use this work except in compliance with the Licence.
// You should have received a copy of the Licence along with this work. If not, see:
// <https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12>.
// See the Licence for the specific language governing permissions and limitations under the Licence.
use crate::storage;

View file

@ -1,4 +1,11 @@
// Copyright Melody 2023. Licensed under the EUPL-1.2 or later
// Copyright (c) 2023 mStar
//
// Licensed under the EUPL, Version 1.2
//
// You may not use this work except in compliance with the Licence.
// You should have received a copy of the Licence along with this work. If not, see:
// <https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12>.
// See the Licence for the specific language governing permissions and limitations under the Licence.
use crate::storage;