{"id":27349587,"url":"https://github.com/azruine/rust-ps","last_synced_at":"2025-04-12T19:26:37.136Z","repository":{"id":226029168,"uuid":"767542006","full_name":"Azruine/Rust-PS","owner":"Azruine","description":null,"archived":false,"fork":false,"pushed_at":"2025-04-02T01:14:13.000Z","size":45,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-02T02:23:48.213Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Azruine.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-05T13:36:17.000Z","updated_at":"2025-04-02T01:14:16.000Z","dependencies_parsed_at":"2024-03-14T08:27:01.442Z","dependency_job_id":"171e1907-ab39-48ad-ba13-a7c8f2f0a095","html_url":"https://github.com/Azruine/Rust-PS","commit_stats":null,"previous_names":["azruine/rust-ps"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Azruine%2FRust-PS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Azruine%2FRust-PS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Azruine%2FRust-PS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Azruine%2FRust-PS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Azruine","download_url":"https://codeload.github.com/Azruine/Rust-PS/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248620228,"owners_count":21134605,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-04-12T19:26:36.052Z","updated_at":"2025-04-12T19:26:37.124Z","avatar_url":"https://github.com/Azruine.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Rust로 백준 풀어보기\n\n이게 뭘까\n\n## 세팅\n  \n|**Software**|**Version**|\n|---|---|\n|**OS**|**Debian 11 bullseye**|\n|**Cargo**|**1.85.1**|\n\nsrc에 있는 main.rs 파일에 코드를 작성한 뒤, f5를 눌러 실행시키면 io/main.input.txt 에 있는 내용을 stdin으로 입력받은 뒤, output.txt에 stdout으로 출력한다.\n\n## Rust 입출력\n\n```rust\nuse std::io::Write;\n\nfn main()\n{\n    let mut a: String = String::new();\n    std::io::stdin().read_line(\u0026mut a).expect(\"Read failed\");\n    let stdout = std::io::stdout();\n    let mut out = std::io::BufWriter::new(stdout.lock());\n    writeln!(out, \"{}\", a)\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazruine%2Frust-ps","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fazruine%2Frust-ps","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazruine%2Frust-ps/lists"}