https://github.com/phoenixr-codes/webinclude
Include Rust Files Over HTTP
https://github.com/phoenixr-codes/webinclude
Last synced: 23 days ago
JSON representation
Include Rust Files Over HTTP
- Host: GitHub
- URL: https://github.com/phoenixr-codes/webinclude
- Owner: phoenixr-codes
- License: mit
- Created: 2023-11-16T18:51:29.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-11-16T18:54:35.000Z (over 2 years ago)
- Last Synced: 2025-12-28T21:18:32.349Z (6 months ago)
- Language: Rust
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# webinclude
## Example
```rust
use webinclude::webinclude;
webinclude!("https://raw.githubusercontent.com/phoenixr-codes/webinclude/master/say.rs");
fn main() {
say("Hi");
}
```
## Quickstart
```console
git clone https://github.com/phoenixr-codes/webinclude.git
cd webinclude
```
```console
cargo run --example example
```
```console
cargo doc --no-deps --open
```
## Why???
>
This is obviously just made out of fun to prove that you can indeed `include` files over HTTP in Rust.