Skip to content

Commit

Permalink
Merge branch 'main' into add-heed
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerollmops authored Apr 21, 2024
2 parents a4e2ec0 + 2334f85 commit f1d4ee4
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
17 changes: 15 additions & 2 deletions data/crates.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
"name": "clippy",
"link": "https://github.com/rust-lang/rust-clippy#usage",
"notes": "The official Rust linter."
}, {
"name": "cargo-semver-checks",
"link": "https://github.com/obi1kenobi/cargo-semver-checks",
"notes": "Lint your crate releases for semantic versioning violations."
}]
},
{
Expand Down Expand Up @@ -122,6 +126,10 @@
"name": "cargo-release",
"link": "https://github.com/crate-ci/cargo-release#cargo-release",
"notes": "Helper for publishing new crate versions."
}, {
"name": "Release-plz",
"link": "https://release-plz.ieni.dev/",
"notes": "Release Rust crates from CI with a Release PR."
}]
},
{
Expand All @@ -134,6 +142,10 @@
"name": "rust-cache (github action)",
"link": "https://github.com/Swatinem/rust-cache#rust-cache-action",
"notes": "Github action to cache compilation artifacts and speed up subsequent runs."
}, {
"name": "install-action (github action",
"link": "https://github.com/taiki-e/install-action",
"notes": "GitHub Action for installing development tools (mainly from GitHub Releases)."
}]
}
]
Expand Down Expand Up @@ -426,7 +438,8 @@
{
"name": "DataFrames",
"recommendations": [
{ "name": "polars", "notes": "Similar to the Pandas library in Python but in pure Rust. Uses the Apache Arrow Columnar Format as the memory model." }
{ "name": "polars", "notes": "Similar to the Pandas library in Python but in pure Rust. Uses the Apache Arrow Columnar Format as the memory model." },
{ "name": "datafusion", "notes": "<a href=\"https://arrow.apache.org/datafusion\">Apache DataFusion</a> is an in-memory query engine that uses Apache Arrow as the memory model" }
]
}
]
Expand Down Expand Up @@ -677,7 +690,7 @@
}],
"see_also": [{
"name": "rocket",
"notes": "Has an excellent API and a solid implementation. However development has been intermittent, and the async branch still doesn't have a stable release. Use of rocket is not recommended until this has been fixed."
"notes": "Has an excellent API and a solid implementation. However development has been intermittent."
}, {
"name": "poem",
"notes": "Automatically generates OpenAPI definitions."
Expand Down
6 changes: 3 additions & 3 deletions data/editors.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
{
"name": "Sublime Text",
"url": "https://www.sublimetext.com/",
"editor_plugins": "sublime-lsp and lsp-rust-analyzer plugins",
"notes": "Well supported. A good option if you like Intellij products."
"editor_plugins": "sublime-lsp combined with lsp-rust-analyzer, Rustfmt and Rust Enhanced plugins",
"notes": "Great if you like a distraction-free editor."
},
{
"name": "Vim/NeoVim",
Expand All @@ -35,4 +35,4 @@
"editor_plugins": "TBD",
"notes": "If you know you know. Not recommended for beginners."
}
]
]

0 comments on commit f1d4ee4

Please sign in to comment.