docs: set license, metadata for cargo and readme

This commit is contained in:
Christoph J. Scherr 2024-10-10 16:16:10 +02:00
parent 06925a9c29
commit 10192ca324
3 changed files with 13 additions and 9 deletions

View File

@ -1,16 +1,16 @@
[package] [package]
name = "template" name = "Kauma-analyzer"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
publish = false publish = false
authors = ["Christoph J. Scherr <software@cscherr.de>"] authors = ["Christoph J. Scherr <software@cscherr.de>"]
license = "MIT" license = "MIT"
description = "No description yet" description = "Solves exams from my professor for cryptoanalysis"
readme = "README.md" readme = "README.md"
homepage = "https://git.cscherr.de/PlexSheep/rs-base" homepage = "https://git.cscherr.de/PlexSheep/kauma"
repository = "https://git.cscherr.de/PlexSheep/rs-base" repository = "https://git.cscherr.de/PlexSheep/kauma"
keywords = ["template"]
[dependencies] [dependencies]
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"

View File

@ -1,6 +1,6 @@
MIT License MIT License
Copyright (c) 2024 PlexSheep Copyright (c) 2024 Christoph Johannes Scherr
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

View File

@ -1,3 +1,7 @@
# rs-base # Kauma-Analyzer
Base repository for rust projects I'm studying cybersecurity at DHBW, and we have "Kryptoalanysis und Methoden
Audit" (kauma) there. As part of this classe, we are to solve some
ccryptological exams in a controlled environment.
This repository contains my solutions for these.