Skip to content

Commit 461263b

Browse files
committed
workspace and members
1 parent 8ab9d2e commit 461263b

Some content is hidden

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

57 files changed

+17186
-0
lines changed

Cargo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[workspace]
2+
3+
members = [
4+
"seed_styles",
5+
"seed_hooks",
6+
"atomic_hooks",
7+
]

atomic_hooks/.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/target
2+
Cargo.lock
3+
4+
# IDE
5+
.idea
6+
.vscode

atomic_hooks/.rustfmt.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
reorder_imports = true
2+
format_code_in_doc_comments = true
3+
normalize_doc_attributes = true
4+
wrap_comments = true
5+
format_strings = true
6+
merge_imports = true

atomic_hooks/Cargo.toml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[package]
2+
name = "atomic_hooks"
3+
version = "0.1.6"
4+
authors = ["rebo"]
5+
edition = "2018"
6+
description = "Atomic Reative State and Local State Hooks"
7+
license = "Apache-2.0 OR MIT"
8+
9+
[dependencies]
10+
slotmap = "0.4.0"
11+
anymap = "0.12.1"
12+
illicit = "1.1.0"
13+
typemap = "0.3.3"
14+
atomic_hooks_macros = { path = "./macro" }
15+
topo = "=0.13.0"

atomic_hooks/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# # atomic_hooks: Reactive programming API
2+
3+
This library contains Apis for reactive programming in Rust.

atomic_hooks/macro/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/target
2+
Cargo.lock

atomic_hooks/macro/Cargo.toml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
[package]
2+
name = "atomic_hooks_macros"
3+
version = "0.1.6"
4+
authors = ["rebo"]
5+
edition = "2018"
6+
autotests = false
7+
description = "Macros for CSS Styling for Seed web apps"
8+
license = "Apache-2.0 OR MIT"
9+
10+
[lib]
11+
proc-macro = true
12+
13+
[[test]]
14+
name = "tests"
15+
path = "tests/progress.rs"
16+
17+
[dev-dependencies]
18+
trybuild = "1.0"
19+
atomic_hooks = { path = ".." }
20+
21+
[dependencies]
22+
syn = {version = "1.0.17", features = ["full","extra-traits"]}
23+
quote = "1.0.3"
24+
proc-macro2 = "1.0.10"
25+
darling = "0.10.2"
26+
illicit = "1.1.0"

0 commit comments

Comments
 (0)