File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -127,6 +127,9 @@ Let's run it
127
127
``` console
128
128
$ chmod +x hello_world.rs
129
129
$ ./hello_world.rs
130
+ warning: `package.edition` is unspecified, defaulting to `2021`
131
+ Finished dev [unoptimized + debuginfo] target(s) in 0.06s
132
+ Running `/home/epage/.cargo/target/98/07dcd6510bdcec/debug/hello_world`
130
133
Hello, world!
131
134
```
132
135
@@ -185,7 +188,8 @@ fn main() {
185
188
186
189
You can then re-run this and Cargo will fetch the new dependencies and all of their dependencies. You can see this by passing in ` --verbose ` :
187
190
``` console
188
- $ cargo eval --verbose ./hello_world.rs
191
+ $ cargo --verbose ./hello_world.rs
192
+ warning: `package.edition` is unspecified, defaulting to `2021`
189
193
Updating crates.io index
190
194
Downloading memchr v0.1.5
191
195
Downloading libc v0.1.10
@@ -200,6 +204,8 @@ $ cargo eval --verbose ./hello_world.rs
200
204
Compiling aho-corasick v0.3.0
201
205
Compiling regex v0.1.41
202
206
Compiling hello_world v0.1.0 (file:///path/to/package/hello_world)
207
+ Finished dev [unoptimized + debuginfo] target(s) in 0.06s
208
+ Running `/home/epage/.cargo/target/98/07dcd6510bdcec/debug/hello_world`
203
209
Did our date match? true
204
210
```
205
211
You can’t perform that action at this time.
0 commit comments