mirror of
https://github.com/CIMEngine/cimengine-build-tools.git
synced 2024-11-05 20:53:58 +03:00
doc: update
This commit is contained in:
parent
f60901134a
commit
5a1bfbb8ee
4 changed files with 49 additions and 4 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -105,7 +105,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
||||
|
||||
[[package]]
|
||||
name = "cimengine-build-tools"
|
||||
name = "cimengine"
|
||||
version = "2.0.0"
|
||||
dependencies = [
|
||||
"clap",
|
||||
|
|
10
Cargo.toml
10
Cargo.toml
|
@ -1,9 +1,15 @@
|
|||
[package]
|
||||
name = "cimengine-build-tools"
|
||||
name = "cimengine"
|
||||
version = "2.0.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
authors = ["artegoser"]
|
||||
license = "MIT"
|
||||
description = "Country info map engine build tools"
|
||||
repository = "https://github.com/CIMEngine/cimengine"
|
||||
readme = "./README.md"
|
||||
keywords = ["geo", "geospatial", "build", "tools", "cli"]
|
||||
categories = ["command-line-utilities"]
|
||||
|
||||
[dependencies]
|
||||
clap = { version = "4.5.4", features = ["derive"] }
|
||||
|
|
21
LICENSE
Normal file
21
LICENSE
Normal file
|
@ -0,0 +1,21 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2024 Artemy "artegoser" Egorov
|
||||
|
||||
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:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
20
README.md
20
README.md
|
@ -1,3 +1,21 @@
|
|||
This is new version. WIP rewriting on rust.
|
||||
# CIMEngine build tools
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
cargo install cimengine
|
||||
```
|
||||
|
||||
or check releases
|
||||
|
||||
## Usage
|
||||
|
||||
CLI well-documented, use help command
|
||||
|
||||
```bash
|
||||
cimengine -h
|
||||
```
|
||||
|
||||
## Old
|
||||
|
||||
To see the old version, goto [old-branch](https://github.com/CIMEngine/cimengine-build-tools/tree/old-js)
|
||||
|
|
Loading…
Reference in a new issue