Browse Source

add init hellowrd

master
Igor Elpin 2 years ago
commit
4005718b48
  1. 4
      .gitignore
  2. 6
      .idea/misc.xml
  3. 8
      .idea/modules.xml
  4. 12
      .idea/rust.iml
  5. 6
      .idea/vcs.xml
  6. 7
      first-app-00/Cargo.lock
  7. 8
      first-app-00/Cargo.toml
  8. 3
      first-app-00/src/main.rs

4
.gitignore vendored

@ -0,0 +1,4 @@
# Default ignored files
/shelf/
/.idea/workspace.xml
target/*

6
.idea/misc.xml

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>

8
.idea/modules.xml

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/rust.iml" filepath="$PROJECT_DIR$/.idea/rust.iml" />
</modules>
</component>
</project>

12
.idea/rust.iml

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/first-app-00/src" isTestSource="false" />
<excludeFolder url="file://$MODULE_DIR$/first-app-00/target" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

6
.idea/vcs.xml

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>

7
first-app-00/Cargo.lock generated

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "first-app-00"
version = "0.1.0"

8
first-app-00/Cargo.toml

@ -0,0 +1,8 @@
[package]
name = "first-app-00"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
first-app-00/src/main.rs

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}
Loading…
Cancel
Save