Add open-source project scaffolding

Add standard open-source project files for public repository
presentability:

- README.md with protocol overview, Nostr identity integration,
  feature highlights, quick start, and project structure
- MIT LICENSE (Copyright 2026 Johnathan Corgan)
- CONTRIBUTING.md with guidelines for issues, PRs, and testing
- Cargo.toml metadata (description, license, authors, repository,
  readme)
- .gitignore expanded with editor/IDE patterns and .claude/
This commit is contained in:
Johnathan Corgan
2026-02-22 20:52:55 +00:00
parent 5410bf3490
commit 92d5df8037
5 changed files with 163 additions and 0 deletions
+5
View File
@@ -2,6 +2,11 @@
name = "fips"
version = "0.1.0"
edition = "2024"
description = "A distributed, decentralized network routing protocol for mesh nodes connecting over arbitrary transports"
license = "MIT"
authors = ["Johnathan Corgan <jcorgan@corganlabs.com>"]
repository = "https://github.com/jmcorgan/fips"
readme = "README.md"
[dependencies]
secp256k1 = { version = "0.30", features = ["rand", "global-context"] }