Skip to content

Commit

Permalink
add readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Zane Schaffer committed Jan 15, 2023
1 parent d4975e7 commit 9c590c3
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Scribe

A tool to convert between different notations and markup languages.

Currently supported filetype:
- JSON
- YAML
- TOML

## Install

```bash
cargo install scribe
```
## Usage

```bash
scribe Cargo.toml Cargo.json
[ input ] [ output ]
```
Scribe infers file formats via the extensions on the input and output paths.

## Todo

- [ ] explicit format flags
- [ ] batch convert a group of input files all to one output format
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::{fs, path::PathBuf};

use anyhow::{anyhow, Context};
use anyhow::anyhow;
use clap::{command, Parser};

#[derive(Parser)]
Expand Down

0 comments on commit 9c590c3

Please sign in to comment.