1
0
Fork 0

Initialize Cargo package

This commit is contained in:
Alex Kotov 2021-11-19 09:45:54 +05:00
parent cd46fa0395
commit 2fbe23b906
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
4 changed files with 26 additions and 0 deletions

1
.gitignore vendored Normal file
View File

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

7
Cargo.lock generated Normal file
View File

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "polytree-settings"
version = "0.0.0"

15
Cargo.toml Normal file
View File

@ -0,0 +1,15 @@
[package]
name = "polytree-settings"
version = "0.0.0"
authors = ["Alex Kotov <kotovalexarian@gmail.com>"]
edition = "2021"
description = "Polytree settings"
readme = false
homepage = "https://github.com/PolytreeWM/polytree-settings"
repository = "https://github.com/PolytreeWM/polytree-settings.git"
license = "MIT"
keywords = ["gui"]
categories = ["gui"]
publish = true
[dependencies]

3
src/main.rs Normal file
View File

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