Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rm typeshare #1340

Merged
merged 33 commits into from
Feb 21, 2025
Merged
Show file tree
Hide file tree
Changes from 32 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
0a68ade
Update rain.interpreter
rouzwelt Feb 18, 2025
6f71047
Update rain.interpreter
rouzwelt Feb 18, 2025
d48efc3
rm typeshare
rouzwelt Feb 18, 2025
cf05ec1
update
rouzwelt Feb 18, 2025
89477c2
Merge branch 'main' into 2025-02-18-rm-typeshare
rouzwelt Feb 18, 2025
7dfa184
update
rouzwelt Feb 18, 2025
bae9141
update
rouzwelt Feb 18, 2025
d70edb7
update
rouzwelt Feb 18, 2025
f4b8dd0
update
rouzwelt Feb 18, 2025
2eca624
svelte check
rouzwelt Feb 18, 2025
590cd51
Update +layout.svelte
rouzwelt Feb 18, 2025
e3c5373
fix lint
rouzwelt Feb 18, 2025
18ef6cd
update
rouzwelt Feb 18, 2025
f8b4d10
Update Cargo.toml
rouzwelt Feb 18, 2025
48e104f
add ob binding tsify tests
rouzwelt Feb 18, 2025
2f2bb34
Update js_api.rs
rouzwelt Feb 18, 2025
8656f47
Update order_operations.rs
rouzwelt Feb 18, 2025
122952f
tauri bindings
rouzwelt Feb 18, 2025
a34e013
update
rouzwelt Feb 19, 2025
0cacf81
Update build.cjs
rouzwelt Feb 19, 2025
b735034
update
rouzwelt Feb 19, 2025
8a81711
update
rouzwelt Feb 19, 2025
db011f5
Update common.rs
rouzwelt Feb 19, 2025
42d9bf3
Merge branch 'main' into 2025-02-18-rm-typeshare
rouzwelt Feb 19, 2025
bef8cbc
fix merge conflict
rouzwelt Feb 19, 2025
35b832a
Merge branch 'main' into 2025-02-18-rm-typeshare
rouzwelt Feb 19, 2025
8dc14df
fix merge conflicts
rouzwelt Feb 19, 2025
2dbc449
Merge branch 'main' into 2025-02-18-rm-typeshare
rouzwelt Feb 19, 2025
b825b7e
fix merge conflicts again
rouzwelt Feb 19, 2025
48b3934
Merge branch 'main' into 2025-02-18-rm-typeshare
rouzwelt Feb 20, 2025
bd3cbe7
fix conflicts
rouzwelt Feb 20, 2025
317b75c
Merge branch 'main' into 2025-02-18-rm-typeshare
rouzwelt Feb 21, 2025
9f8b760
bump i9r
hardyjosh Feb 21, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ dist
packages/orderbook/cjs.js
packages/orderbook/cjs.d.ts
packages/orderbook/esm.js
packages/orderbook/esm.d.ts
packages/orderbook/esm.d.ts
tauri-app/src/lib/types
97 changes: 33 additions & 64 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,10 @@ comfy-table = "7.1.0"
cynic-codegen = { version = "3.4.0", features = ["rkyv"] }
cynic = "3.7.3"
chrono = "0.4.31"
typeshare = { git = "https://github.com/tomjw64/typeshare", rev = "556b44aafd5304eedf17206800f69834e3820b7c" }
thiserror = "1.0.56"
strict-yaml-rust = "0.1.2"
dotrain = "6.0.1-alpha.18"
dotrain-lsp = "6.0.1-alpha.18"
dotrain = "6.0.1-alpha.24"
dotrain-lsp = "6.0.1-alpha.24"
rain-metadata = { path = "lib/rain.interpreter/lib/rain.metadata/crates/cli" }
rain-metadata-bindings = { path = "lib/rain.interpreter/lib/rain.metadata/crates/bindings" }
rain-metaboard-subgraph = { path = "lib/rain.interpreter/lib/rain.metadata/crates/metaboard" }
Expand All @@ -54,6 +53,7 @@ test-context = "0.3.0"
portpicker = "0.1.1"
rain-erc = { git = "https://github.com/rainlanguage/rain.erc", rev = "0106e645ebd49334addc698c5aad9a85370eb54d" }
rain-error-decoding = { git = "https://github.com/rainlanguage/rain.error", rev = "72d9577fdaf7135113847027ba951f9a43b41827" }
wasm-bindgen-utils = "0.0"

[workspace.dependencies.rain_orderbook_bindings]
path = "crates/bindings"
Expand Down
5 changes: 1 addition & 4 deletions crates/bindings/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,7 @@ alloy = { workspace = true, features = ["sol-types", "json"] }
serde = { workspace = true, features = ["derive", "rc"] }

[target.'cfg(target_family = "wasm")'.dependencies]
js-sys = { version = "0.3.69" }
wasm-bindgen = { version = "0.2.92" }
serde-wasm-bindgen = { version = "0.6.5" }
tsify = { version = "0.4.5", default-features = false, features = ["js", "wasm-bindgen"] }
wasm-bindgen-utils = { workspace = true }

[dev-dependencies]
wasm-bindgen-test = "0.3.42"
Loading
Loading