Skip to content

Commit

Permalink
reorganize repo (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheButlah authored Sep 30, 2024
1 parent b128adb commit baaaec7
Show file tree
Hide file tree
Showing 31 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[workspace]
resolver = "2"
members = [
"apps/identity_server",
"crates/did-simple",
"did-simple",
"header-parsing",
"identity-server",
]

# These settings will apply to all members of the workspace that opt in to them
Expand All @@ -11,7 +12,7 @@ version = "0.0.0"
license = "MIT-0 OR Apache-2.0"
repository = "https://github.com/NexusSocial/identity"
edition = "2021"
rust-version = "1.78.0"
rust-version = "1.81.0"

[workspace.dependencies]
arc-swap = "1.7.1"
Expand All @@ -21,9 +22,9 @@ axum-macros = "0.4.1"
base64 = "0.21.7"
clap = { version = "4.4.11", features = ["derive"] }
color-eyre = "0.6"
did-simple.path = "crates/did-simple"
did-simple.path = "did-simple"
eyre = "0.6"
header-parsing.path = "crates/header-parsing"
header-parsing.path = "header-parsing"
hex-literal = "0.4.1"
http = "1.1.0"
http-body-util = "0.1.2"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "identity_server"
name = "identity-server"
version.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ impl JwksProviderT for HttpProvider {

/// Always provides the same JWKs.
#[derive(Debug, Clone)]
#[expect(dead_code)]
struct StaticProvider(Arc<CachedJwks>);

#[async_trait]
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[toolchain]
channel = "1.78.0" # See workspace Cargo.toml
channel = "1.81.0" # See workspace Cargo.toml
components = ["rust-src"]
profile = "default"
targets = ["x86_64-pc-windows-msvc", "aarch64-linux-android", "x86_64-unknown-linux-gnu"]

0 comments on commit baaaec7

Please sign in to comment.