Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
Set up general project structure, [cargo.toml](Cargo.toml) and [license](LICENSE)
Added [changelog](CHANGELOG.md) and reference in the [readme](README.md)
Migrated source files from [omg](https://crates.io/crates/omg) crate
  • Loading branch information
supleed2 committed May 8, 2023
0 parents commit 40ebdf7
Show file tree
Hide file tree
Showing 18 changed files with 1,127 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added

### Changed

### Deprecated

### Removed

### Fixed

### Security

## 0.1.0 - 2023-05-08

### Added

- General project structure, [cargo.toml](Cargo.toml) and [license](LICENSE).
- Changelog file (this file) and reference in the [readme](README.md).
- Source files from [omg](https://crates.io/crates/omg) crate.

[unreleased]: https://github.com/supleed2/omg-api/compare/v0.1.0...HEAD
[0.1.0]: https://github.com/supleed2/omg-api/releases/tag/v0.1.0
320 changes: 320 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[package]
name = "omg-api"
version = "0.1.0"
edition = "2021"
description = "Library for interacting with the omg.lol API, used by the omg crate"
license = "Apache-2.0"

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

[dependencies]
clap = { version = "4.2.7", features = ["derive"] }
Loading

0 comments on commit 40ebdf7

Please sign in to comment.