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:
parent
cfa165ff96
commit
f2b76465c6
8 changed files with 46 additions and 9 deletions
2
.vscode/settings.json
vendored
2
.vscode/settings.json
vendored
File diff suppressed because one or more lines are too long
|
@ -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]
|
||||
|
|
|
@ -1,7 +1,3 @@
|
|||
<!--
|
||||
Copyright Melody 2023. Licensed under the EUPL-1.2 or later
|
||||
-->
|
||||
|
||||
# UI
|
||||
- Firefish like
|
||||
- htmx
|
||||
|
|
6
README.md
Normal file
6
README.md
Normal 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
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue