Skip to content

Commit 4f84cde

Browse files
builder patterns :D (#24)
* builder patterns :D * moar building * formatting * improved fnwithargs * improved fnwithargs even more * done * fmt
1 parent 1f2ec50 commit 4f84cde

22 files changed

+4504
-1469
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ node_modules/
44
# Added by cargo
55

66
target
7+
build_logs.txt

Cargo.lock

+48-26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+14-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chart-js-rs"
3-
version = "0.0.38"
3+
version = "0.0.39"
44
edition = "2021"
55
authors = ["Billy Sheppard", "Luis Moreno"]
66
license = "Apache-2.0"
@@ -12,15 +12,23 @@ repository = "https://github.com/Billy-Sheppard/chart-js-rs"
1212
homepage = "https://github.com/Billy-Sheppard/chart-js-rs"
1313

1414
[dependencies]
15+
gloo-console = { version = "0.3" }
16+
gloo-utils = { version = "0.2", features = ["serde"] }
17+
js-sys = "0.3.64"
1518
rust_decimal = "1.34"
1619
serde = { version = "1.0.210", features = ["derive"] }
17-
wasm-bindgen = { version = "0.2.90", features = ["serde-serialize"] }
18-
gloo-utils = { version = "0.2", features = ["serde"] }
19-
gloo-console = { version = "0.3" }
20-
serde-wasm-bindgen = "0.6"
2120
serde_json = "1"
21+
serde-wasm-bindgen = "0.6"
2222
thiserror = "1"
23-
js-sys = "0.3.64"
23+
wasm-bindgen = { version = "0.2.90", features = ["serde-serialize"] }
24+
uuid = { version = "1.10.0", features = ["v4"] }
2425

2526
[workspace]
2627
members = ["examples"]
28+
29+
[build-dependencies]
30+
heck = "*"
31+
itertools = "*"
32+
quote = "*"
33+
proc-macro2 = "*"
34+
syn = { features = ["parsing", "full"], version = "*" }

0 commit comments

Comments
 (0)