Move uhttp to its own repo

This commit is contained in:
soup 2024-10-14 22:19:45 -04:00
parent 9d6d8b672e
commit 8014ec4076
No known key found for this signature in database
17 changed files with 13 additions and 57 deletions

1
.gitignore vendored
View file

@ -1 +0,0 @@
/target

25
Cargo.lock generated
View file

@ -1,25 +0,0 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "shelves"
version = "0.1.0"
dependencies = [
"uhttp",
"uhttp-ext",
]
[[package]]
name = "uhttp"
version = "0.1.0"
dependencies = [
"uhttp-ext",
]
[[package]]
name = "uhttp-ext"
version = "0.1.0"
dependencies = [
"uhttp",
]

View file

@ -1,15 +1,9 @@
[workspace]
members = [
"crates/uhttp",
"crates/uhttp/crates/uhttp-ext",
]
resolver = "2"
[package] [package]
name = "shelves" name = "uhttp"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
[dependencies] [dependencies]
uhttp = { path = "crates/uhttp" }
uhttp-ext = { path = "crates/uhttp/crates/uhttp-ext" } [dev-dependencies]
uhttp-ext = { path = "./crates/uhttp-ext" }

View file

@ -1,9 +0,0 @@
[package]
name = "uhttp"
version = "0.1.0"
edition = "2021"
[dependencies]
[dev-dependencies]
uhttp-ext = { path = "./crates/uhttp-ext" }

View file

@ -2,11 +2,11 @@
"nodes": { "nodes": {
"crane": { "crane": {
"locked": { "locked": {
"lastModified": 1728344376, "lastModified": 1728776144,
"narHash": "sha256-lxTce2XE6mfJH8Zk6yBbqsbu9/jpwdymbSH5cCbiVOA=", "narHash": "sha256-fROVjMcKRoGHofDm8dY3uDUtCMwUICh/KjBFQnuBzfg=",
"owner": "ipetkov", "owner": "ipetkov",
"repo": "crane", "repo": "crane",
"rev": "fd86b78f5f35f712c72147427b1eb81a9bd55d0b", "rev": "f876e3d905b922502f031aeec1a84490122254b7",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -41,11 +41,11 @@
"rust-analyzer-src": "rust-analyzer-src" "rust-analyzer-src": "rust-analyzer-src"
}, },
"locked": { "locked": {
"lastModified": 1728455642, "lastModified": 1728887700,
"narHash": "sha256-abYGwrL6ak5sBRqwPh+V3CPJ6Pa89p378t51b7BO1lE=", "narHash": "sha256-i+WCARuldFmXlNW6XlEYiL8UGMzjdg5lMQ9gpACQL/A=",
"owner": "nix-community", "owner": "nix-community",
"repo": "fenix", "repo": "fenix",
"rev": "3b47535a5c782e4f4ad59cd4bdb23636b6926e03", "rev": "bcf74e45d5a818fe3aadf5cb3099189770e18579",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -115,11 +115,11 @@
"rust-analyzer-src": { "rust-analyzer-src": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1728386838, "lastModified": 1728719115,
"narHash": "sha256-Lk64EoJkvp3WMGVJK3CR1TYcNghX0/BqHPLW5zdvmLE=", "narHash": "sha256-SLcHmKzkIuahBbSCWr2gzu6bXo6wF12JP4myDzH1CvQ=",
"owner": "rust-lang", "owner": "rust-lang",
"repo": "rust-analyzer", "repo": "rust-analyzer",
"rev": "efaf8bd5de34e2f47bd57425b83e0c7974902176", "rev": "d7628c0a8b95cadefe89d9a45f9be5ee4898c6b1",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -1,3 +0,0 @@
fn main() {
println!("hello, world");
}