Skip to content
This repository has been archived by the owner on Jul 22, 2023. It is now read-only.

Commit

Permalink
move files
Browse files Browse the repository at this point in the history
  • Loading branch information
crapStone committed Jan 16, 2022
1 parent 00bd9dd commit fab65fa
Show file tree
Hide file tree
Showing 734 changed files with 216 additions and 186 deletions.
147 changes: 0 additions & 147 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,145 +1,8 @@

# Created by https://www.toptal.com/developers/gitignore/api/node,yarn
# Edit at https://www.toptal.com/developers/gitignore?templates=node,yarn

### Node ###
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test
.env*.local

# build output
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

### yarn ###
# https://yarnpkg.com/advanced/qa#which-files-should-be-gitignored

.yarn/*
!.yarn/releases
!.yarn/plugins
!.yarn/sdks
!.yarn/versions

# if you are NOT using Zero-installs, then:
# comment the following lines
!.yarn/cache

# and uncomment the following lines
# .pnp.*

# End of https://www.toptal.com/developers/gitignore/api/node,yarn

# Angular
# See http://help.github.com/ignore-files/ for more about ignoring files.

# compiled output
/dist
/tmp
/out-tsc
# Only exists if Bazel was run
/bazel-out

# dependencies
/node_modules

# profiling files
chrome-profiler-events*.json
speed-measure-plugin*.json

# IDEs and editors
/.idea
.project
Expand All @@ -157,16 +20,6 @@ speed-measure-plugin*.json
!.vscode/extensions.json
.history/*

# misc
/.sass-cache
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings

# System Files
.DS_Store
Thumbs.db
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 8 additions & 0 deletions library/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[workspace]
members = [
"config",
"load_save",
"logger",
"search",
"types",
]
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "cabr2_config"
name = "config"
version = "0.4.0"
authors = [
"crapStone <crapstone01@gmail.com>",
Expand All @@ -11,7 +11,6 @@ edition = "2018"

[dependencies]
base64 = "0.13.0"
cabr2_types = { path = "../cabr2_types/" }
directories-next = "2.0.0"
lazy_static = "1.4.0"
log = "0.4.14"
Expand All @@ -21,10 +20,11 @@ tauri = { version = "1.0.0-beta.8", default-features = false, optional = true }
thiserror = "1.0.29"
tokio = { version = "1.11.0", features = ["fs", "io-util"] }
toml = { version = "0.5.8", features = ["preserve_order"] }
types = { path = "../types/" }
warp = { version = "0.3.1", optional = true }

[features]
portable = []
tauri_plugin = ["tauri"]
webserver = ["warp", "cabr2_types/webserver"]
webserver = ["warp", "types/webserver"]
default = []
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "cabr2_load_save"
name = "load_save"
version = "0.4.0"
authors = [
"crapStone <crapstone01@gmail.com>",
Expand All @@ -11,10 +11,9 @@ edition = "2018"

[dependencies]
async-trait = "0.1.51"
cabr2_config = { path = "../cabr2_config/", optional = true }
cabr2_types = { path = "../cabr2_types/" }
cfg-if = "1.0.0"
chrono = { version = "0.4.19", optional = true }
config = { path = "../config/", optional = true }
handlebars = { version = "4.1.3", optional = true }
lazy_static = "1.4.0"
log = "0.4.14"
Expand All @@ -26,15 +25,16 @@ serde_json = { version = "1.0.68", optional = true }
tauri = { version = "1.0.0-beta.8", default-features = false, optional = true }
thiserror = "1.0.29"
tokio = { version = "1.11.0", features = ["fs"], optional = true }
types = { path = "../types/" }
uuid = { version = "0.8.2", features = ["serde", "v4"], optional = true }
warp = { version = "0.3.1", features = [], optional = true }
wkhtmltopdf = { version = "0.4.0", optional = true }

[features]
beryllium = ["chrono", "quick-xml", "regex"]
cabr2 = ["serde_json"]
pdf = ["cabr2_config", "tokio", "chrono", "handlebars", "lopdf", "serde_json", "wkhtmltopdf"]
pdf = ["config", "tokio", "chrono", "handlebars", "lopdf", "serde_json", "wkhtmltopdf"]
tauri_plugin = ["tauri", "serde_json", "tokio"]
webserver = ["tokio", "uuid", "warp", "cabr2_types/webserver"]
webserver = ["tokio", "uuid", "warp", "types/webserver"]
wasm = []
default = []
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "cabr2_logger"
name = "logger"
version = "0.4.0"
authors = [
"crapStone <crapstone01@gmail.com>",
Expand All @@ -10,15 +10,15 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
cabr2_config = { path = "../cabr2_config/" }
cabr2_types = { path = "../cabr2_types/" }
chrono = "0.4.19"
config = { path = "../config/" }
fern = "0.6.0"
log = "0.4.14"
serde = { version = "1.0.130", features = ["derive"], optional = true }
serde_json = { version = "1.0.68", optional = true }
tauri = { version = "1.0.0-beta.8", default-features = false, optional = true }
tokio = "1.11.0"
types = { path = "../types/" }

[features]
tauri_plugin = ["serde", "serde_json", "tauri"]
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "cabr2_search"
name = "search"
version = "0.4.0"
authors = [
"crapStone <crapstone01@gmail.com>",
Expand All @@ -11,7 +11,6 @@ edition = "2018"

[dependencies]
async-trait = "0.1.50"
cabr2_types = { path = "../cabr2_types/" }
cfg-if = "1.0.0"
chrono = "0.4.19"
futures = { version = "0.3.17", optional = true }
Expand All @@ -25,13 +24,14 @@ structopt = { version = "0.3.23", optional = true }
tauri = { version = "1.0.0-beta.8", default-features = false, optional = true }
thiserror = "1.0.29"
tokio = { version = "1.11.0", features = ["sync"], default-features = false, optional = true }
types = { path = "../types/" }
warp = { version = "0.3.1", optional = true }

[features]
gestis = [ "roxmltree", "reqwest" ]
gestis_helper = [ "gestis" ]
tauri_plugin = [ "tauri", "tokio" ]
webserver = [ "warp", "tokio", "cabr2_types/webserver" ]
webserver = [ "warp", "tokio", "types/webserver" ]
wasm = [ "chrono/wasmbind" ]
default = []

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "cabr2_types"
name = "types"
version = "0.4.0"
authors = [
"crapStone <crapstone01@gmail.com>",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit fab65fa

Please sign in to comment.