Skip to content

Commit

Permalink
feat: rewrite project
Browse files Browse the repository at this point in the history
  • Loading branch information
nullishamy committed Oct 21, 2023
1 parent f3f8568 commit 394f91d
Show file tree
Hide file tree
Showing 651 changed files with 7,105 additions and 22,529 deletions.
1 change: 1 addition & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use flake
17 changes: 11 additions & 6 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
on:
push:
tags:
- "v*"
branches:
- main

jobs:
generate-docs:
Expand All @@ -27,12 +27,17 @@ jobs:
run: cargo doc --release --no-deps

- name: Create index.html for github pages
run: echo "<meta http-equiv=\"refresh\" content=\"0; url=kate\">" > target/doc/index.html
run: echo "<meta http-equiv=\"refresh\" content=\"0; url=cli\">" > target/doc/index.html

- name: Create .nojekyll to stop Jekyll builds
run: echo "." > target/doc/.nojekyll

- name: Copy generated docs to docs folder
run: cp -r ./target/doc ./docs

- name: Commit updated documentation
uses: stefanzweifel/git-auto-commit-action@v4
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4.4.1
with:
commit_message: "docs: autogenerate documentation"
branch: gh-pages
folder: docs
clean: true
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Generated by Cargo
# will have compiled files and executables
/target/
target/

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Expand All @@ -9,10 +9,14 @@ Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk

*.iml

# Added by cargo

/target
.DS_STORE
*.class
.idea/
.direnv/
dev/
std/
34 changes: 10 additions & 24 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,28 +1,14 @@
[package]
name = "kate"
license-file = "LICENSE"
documentation = "https://amy.is-a.dev/kate"
repository = "https://github.com/nullishamy/kate/"
version = "0.1.0"
readme = "README.md"
description = "A WIP JVM written in rust."
edition = "2021"
[workspace]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
members = [
"sources/*"
]

[dependencies]
bytes = "1.1.0"
bitflags = "1.3"
paste = "1.0.6"
anyhow = "1.0.56"
thiserror = "1.0.30"
enum-as-inner = "0.4.0"
clap = { version = "3.1.6", features = ["derive"] }
[workspace.dependencies]
anyhow = "1.0.68"
paste = "1.0.11"
bytes = "1.3.0"
enum-as-inner = "0.5.1"
tracing = "0.1.32"
tracing-subscriber = "0.3.9"
tui = "0.17"
crossterm = { version = "0.22", features = ["event-stream"]}
parking_lot = "0.12.0"
lazy_static = "1.4.0"
tokio = { version = "1.17.0", features = ["full"] }
tokio-stream = "0.1.7"
parking_lot = "0.12"
217 changes: 45 additions & 172 deletions LICENSE.md

Large diffs are not rendered by default.

Empty file removed docs/.lock
Empty file.
50 changes: 0 additions & 50 deletions docs/COPYRIGHT.txt

This file was deleted.

94 changes: 0 additions & 94 deletions docs/FiraSans-LICENSE.txt

This file was deleted.

Binary file removed docs/FiraSans-Medium.woff
Binary file not shown.
Binary file removed docs/FiraSans-Medium.woff2
Binary file not shown.
Binary file removed docs/FiraSans-Regular.woff
Binary file not shown.
Binary file removed docs/FiraSans-Regular.woff2
Binary file not shown.
Loading

0 comments on commit 394f91d

Please sign in to comment.