Do you wish to
register an account
?
This website works better with JavaScript.
Home
Help
Sign In
timw4mail
/
rs-blog
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
First commit
actix-web
Timothy Warren
1 year ago
commit
5cdda1d2fa
3 changed files
with
15 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-0
.gitignore
+9
-0
Cargo.toml
+3
-0
src/main.rs
+ 3
- 0
.gitignore
View File
@ -0,0 +1,3 @@
.idea
/target
**/*.rs.bk
+ 9
- 0
Cargo.toml
View File
@ -0,0 +1,9 @@
[package]
name
=
"rs-blog"
version
=
"0.1.0"
authors
=
["Timothy Warren <tim@timshomepage.net>"]
edition
=
"2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
+ 3
- 0
src/main.rs
View File
@ -0,0 +1,3 @@
fn
main
(
)
{
println
!
(
"Hello, world!"
)
;
}
Write
Preview
Loading…
Cancel
Save