Skip to content

Commit cc4dcf6

Browse files
committed
update rust docs
1 parent 8734432 commit cc4dcf6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

crates/www/routes/docs/getting_started/predict/rust/server/page.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ impl Component for Install {
4646
let code = ui::doc!(
4747
r#"
4848
[dependencies]
49-
modelfox = "*"
49+
modelfox = { git = "https://github.com/modelfoxdotdev/modelfox" }
5050
"#
5151
);
5252
let code = ui::highlight(code, ui::Language::Rust);

languages/rust/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The ModelFox Rust library makes it easy to make predictions with your ModelFox m
99

1010
```toml
1111
[dependencies]
12-
modelfox = "*"
12+
modelfox = { git = "https://github.com/modelfoxdotdev/modelfox" }
1313
```
1414

1515
```rust

languages/rust/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The ModelFox crate makes it easy to make predictions with your ModelFox machine
55
66
```toml
77
[dependencies]
8-
modelfox = "*"
8+
modelfox = { git = "https://github.com/modelfoxdotdev/modelfox" }
99
```
1010
1111
```rust no_run

0 commit comments

Comments
 (0)