main
This commit is contained in:
parent
e89430b400
commit
f25c8e97b3
5 changed files with 44 additions and 0 deletions
8
.idea/.gitignore
vendored
Normal file
8
.idea/.gitignore
vendored
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# Default ignored files
|
||||||
|
/shelf/
|
||||||
|
/workspace.xml
|
||||||
|
# Editor-based HTTP Client requests
|
||||||
|
/httpRequests/
|
||||||
|
# Datasource local storage ignored files
|
||||||
|
/dataSources/
|
||||||
|
/dataSources.local.xml
|
11
.idea/ipimg.iml
Normal file
11
.idea/ipimg.iml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module type="CPP_MODULE" version="4">
|
||||||
|
<component name="NewModuleRootManager">
|
||||||
|
<content url="file://$MODULE_DIR$">
|
||||||
|
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
||||||
|
<excludeFolder url="file://$MODULE_DIR$/target" />
|
||||||
|
</content>
|
||||||
|
<orderEntry type="inheritedJdk" />
|
||||||
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
</component>
|
||||||
|
</module>
|
8
.idea/modules.xml
Normal file
8
.idea/modules.xml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ProjectModuleManager">
|
||||||
|
<modules>
|
||||||
|
<module fileurl="file://$PROJECT_DIR$/.idea/ipimg.iml" filepath="$PROJECT_DIR$/.idea/ipimg.iml" />
|
||||||
|
</modules>
|
||||||
|
</component>
|
||||||
|
</project>
|
6
.idea/vcs.xml
Normal file
6
.idea/vcs.xml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="VcsDirectoryMappings">
|
||||||
|
<mapping directory="" vcs="Git" />
|
||||||
|
</component>
|
||||||
|
</project>
|
11
src/main.rs
11
src/main.rs
|
@ -1,3 +1,14 @@
|
||||||
|
///////////////////////////////////////////
|
||||||
|
// //
|
||||||
|
// TO EDIT NETWORK STUFF EDIT BELOW: //
|
||||||
|
// - const IPADDRESS //
|
||||||
|
// - const PORT //
|
||||||
|
// //
|
||||||
|
///////////////////////////////////////////
|
||||||
|
|
||||||
|
const IPADDRESS: &str = "69";
|
||||||
|
const PORT: &str = "8080";
|
||||||
|
|
||||||
use std::{io::Cursor, net::SocketAddr};
|
use std::{io::Cursor, net::SocketAddr};
|
||||||
|
|
||||||
use ab_glyph::FontRef;
|
use ab_glyph::FontRef;
|
||||||
|
|
Loading…
Reference in a new issue