1
0
Fork 0

Initialize Cargo package

This commit is contained in:
Alex Kotov 2020-10-14 04:25:14 +05:00
parent fe5b488627
commit 9a29de9edd
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
4 changed files with 22 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target/

16
Cargo.toml Normal file
View File

@ -0,0 +1,16 @@
[package]
name = "fedihub-registry"
version = "0.0.0"
authors = ["Alex Kotov <kotovalexarian@gmail.com>"]
edition = "2018"
description = "User registry"
readme = "README.md"
homepage = "https://fedihub.com"
repository = "https://github.com/fedihubcom/registry"
license = "MIT"
license-file = "LICENSE"
keywords = ["web"]
categories = []
publish = true
[dependencies]

2
README.md Normal file
View File

@ -0,0 +1,2 @@
fedihub-registry
================

3
src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}