Skip to content

Commit

Permalink
docs: add description and license info
Browse files Browse the repository at this point in the history
  • Loading branch information
doprz committed Mar 28, 2023
1 parent 8e2b62f commit 2ac68bd
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[package]
name = "rs-cube"
version = "0.1.0"
version = "1.0.0"
edition = "2021"
description = "Blazingly fast 3D ASCII Rubik's Cube"
license = "MIT OR Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
# rs-cube

Blazingly fast 3D ASCII Rubik's Cube

## License

rs-cube is dual-licensed under the terms of both the MIT License and the Apache License 2.0
SPDX-License-Identifier: MIT OR Apache-2.0
3 changes: 3 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) 2023 doprz
// SPDX-License-Identifier: MIT OR Apache-2.0

use clap::Parser;
use libc::{ioctl, winsize, STDOUT_FILENO, TIOCGWINSZ, signal, SIGINT};
use std::io::{self, Write};
Expand Down

0 comments on commit 2ac68bd

Please sign in to comment.