Skip to content

Commit

Permalink
chore(tokengen): server mode (#1074)
Browse files Browse the repository at this point in the history
  • Loading branch information
irvingoujAtDevolution authored Oct 30, 2024
1 parent 5169f60 commit bfe4592
Show file tree
Hide file tree
Showing 5 changed files with 960 additions and 365 deletions.
13 changes: 11 additions & 2 deletions tools/tokengen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,25 @@ version = "0.0.0"
authors = ["Devolutions Inc. <[email protected]>"]
edition = "2021"
publish = false
default-run = "tokengen"

[workspace]
resolver = "2"
members = ["."]

[dependencies]
picky = { version = "7.0.0-rc.8", default-features = false, features = ["jose"] }
clap = { version = "3.0", features = ["derive"] }
picky = { version = "7.0.0-rc.8", default-features = false, features = [
"jose"
] }
clap = { version = "3.0", features = ["derive", "env"] }
humantime = "2.1"
serde = "1.0"
serde_json = "1.0"
uuid = { version = "1.1", features = ["v4", "serde"] }
tap = "1.0"
tokio = { version = "1.41", features = ["fs", "io-util", "net", "rt", "rt-multi-thread"] }
axum = { version = "0.7" }
tower = { version = "0.5" }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tower-http = { version = "0.6.1", features = ["cors", "trace"] }
Loading

0 comments on commit bfe4592

Please sign in to comment.