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

Add placeholder crate for fj-host #357

Merged
merged 2 commits into from
Mar 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
/target
/fj/Cargo.lock
/fj/target
/fj-host/Cargo.lock
/fj-host/target
/release-operator/target
/models/*/Cargo.lock
/models/*/target
Expand Down
9 changes: 9 additions & 0 deletions fj-host/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[package]
name = "fj-host"
version = "0.5.0"
edition = "2021"

description = "The world needs another CAD program."
readme = "README.md"
repository = "https://github.com/hannobraun/fornjot"
license = "0BSD"
1 change: 1 addition & 0 deletions fj-host/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
`fj-host` has been renamed to `fj-app`. Please refer to the [`fj-app` crate](https://crates.io/crates/fj-app).
3 changes: 3 additions & 0 deletions fj-host/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
compile_error!(
"`fj-host has been renamed to `fj-app`: https://crates.io/crates/fj-app"
);