Skip to content

Commit

Permalink
Publish to crates.io
Browse files Browse the repository at this point in the history
  • Loading branch information
texodus committed Aug 23, 2022
1 parent 72c17d7 commit e08f567
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 166 deletions.
2 changes: 1 addition & 1 deletion examples/blocks/src/streaming/streaming.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,6 @@ window.addEventListener("DOMContentLoaded", async function () {
// Add more rows every 50ms using the `update()` method on the `table` directly.
(function postRow() {
table.update(newRows());
setTimeout(postRow, 50);
setTimeout(postRow, 10);
})();
});
177 changes: 15 additions & 162 deletions rust/perspective-viewer/Cargo.lock

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

17 changes: 14 additions & 3 deletions rust/perspective-viewer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
[package]
name = "perspective-viewer"
version = "1.0.8"
name = "perspective"
version = "1.6.5"
authors = ["Andrew Stein <steinlink@gmail.com>"]
edition = "2021"
description = "A frontend for Perspective"
description = "A data visualization and analytics component, especially well-suited for large and/or streaming datasets."
repository = "https://github.com/finos/perspective"
license = "Apache-2.0"
homepage = "https://perspective.finos.org"
keywords = ["experimental"]
include = [
"build.rs",
"src/**/*",
"build/css/**/*",
"Cargo.toml",
"package.json",
]

[lib]
name = "perspective_viewer"
crate-type = ["cdylib", "rlib"]
path = "src/rust/lib.rs"

Expand Down

0 comments on commit e08f567

Please sign in to comment.