Skip to content
This repository was archived by the owner on Mar 7, 2024. It is now read-only.

Commit 492bafa

Browse files
committed
initiial commti rework
1 parent 5aab06b commit 492bafa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+324
-122578
lines changed

.babelrc

-3
This file was deleted.

.editorconfig

-15
This file was deleted.

.eslintignore

-3
This file was deleted.

.eslintrc.yaml

-6
This file was deleted.

.gitattributes

-22
This file was deleted.

.gitignore

+9-105
Original file line numberDiff line numberDiff line change
@@ -1,106 +1,10 @@
1-
# Created by https://www.gitignore.io/api/sublimetext,bower,node,webstorm
2-
3-
### SublimeText ###
4-
# cache files for sublime text
5-
*.tmlanguage.cache
6-
*.tmPreferences.cache
7-
*.stTheme.cache
8-
9-
# workspace files are user-specific
10-
*.sublime-workspace
11-
12-
# project files should be checked into the repository, unless a significant
13-
# proportion of contributors will probably not be using SublimeText
14-
# *.sublime-project
15-
16-
# sftp configuration file
17-
sftp-config.json
18-
19-
20-
### Bower ###
21-
bower_components
22-
.bower-cache
23-
.bower-registry
24-
.bower-tmp
25-
26-
27-
### Node ###
28-
# Logs
29-
logs
30-
*.log
31-
npm-debug.log*
32-
33-
# Runtime data
34-
pids
35-
*.pid
36-
*.seed
37-
38-
# Directory for instrumented libs generated by jscoverage/JSCover
39-
lib-cov
40-
41-
# Coverage directory used by tools like istanbul
42-
coverage
43-
44-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
45-
.grunt
46-
47-
# node-waf configuration
48-
.lock-wscript
49-
50-
# Compiled binary addons (http://nodejs.org/api/addons.html)
51-
build/Release
52-
53-
# Dependency directory
54-
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
1+
/target
2+
**/*.rs.bk
3+
Cargo.lock
4+
bin/
5+
pkg/
6+
dist/
7+
wasm-pack.log
558
node_modules
56-
57-
58-
### WebStorm ###
59-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
60-
61-
*.iml
62-
63-
## Directory-based project format:
64-
.idea/
65-
# if you remove the above rule, at least ignore the following:
66-
67-
# User-specific stuff:
68-
# .idea/workspace.xml
69-
# .idea/tasks.xml
70-
# .idea/dictionaries
71-
72-
# Sensitive or high-churn files:
73-
# .idea/dataSources.ids
74-
# .idea/dataSources.xml
75-
# .idea/sqlDataSources.xml
76-
# .idea/dynamic.xml
77-
# .idea/uiDesigner.xml
78-
79-
# Gradle:
80-
# .idea/gradle.xml
81-
# .idea/libraries
82-
83-
# Mongo Explorer plugin:
84-
# .idea/mongoSettings.xml
85-
86-
## File-based project format:
87-
*.ipr
88-
*.iws
89-
90-
## Plugin-specific files:
91-
92-
# IntelliJ
93-
/out/
94-
95-
# mpeltonen/sbt-idea plugin
96-
.idea_modules/
97-
98-
# JIRA plugin
99-
atlassian-ide-plugin.xml
100-
101-
# Crashlytics plugin (for Android Studio and IntelliJ)
102-
com_crashlytics_export_strings.xml
103-
crashlytics.properties
104-
crashlytics-build.properties
105-
106-
dist
9+
yarn.lock
10+
package-lock.json

.hound.yml

-5
This file was deleted.

.travis.yml

-7
This file was deleted.

Cargo.toml

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
[package]
2+
name = "yawe"
3+
version = "0.1.0"
4+
authors = ["David Knaack"]
5+
edition = "2018"
6+
7+
[lib]
8+
crate-type = ["cdylib", "rlib"]
9+
10+
[profile.release]
11+
lto = true
12+
13+
[dependencies]
14+
console_error_panic_hook = "0.1.6"
15+
failure = "0.1"
16+
futures-preview = { version = "0.3.0-alpha.19", features = ["compat", "io-compat"] }
17+
serde_derive = "1"
18+
serde_urlencoded = "0.6.1"
19+
serde_json = "1"
20+
serde = "1"
21+
yew = { path = "../yew" }
22+
futures = "0.1.20"
23+
wasm-bindgen = { version = "0.2.48", features = ["serde-serialize"] }
24+
js-sys = "0.3.25"
25+
wasm-bindgen-futures = "0.4.1"
26+
wee_alloc = "0.4.4"
27+
28+
29+
[dependencies.web-sys]
30+
version = "0.3.25"
31+
features = [
32+
"AbortController",
33+
"AbortSignal",
34+
"Headers",
35+
"ObserverCallback",
36+
"ReferrerPolicy",
37+
"Request",
38+
"RequestCache",
39+
"RequestCredentials",
40+
"RequestInit",
41+
"RequestMode",
42+
"RequestRedirect",
43+
"Response",
44+
"Window",
45+
]
46+
47+
[dev-dependencies]
48+
wasm-bindgen-test = "0.3"
49+

0 commit comments

Comments
 (0)