-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(tokengen): server mode (#1074)
- Loading branch information
1 parent
5169f60
commit bfe4592
Showing
5 changed files
with
960 additions
and
365 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"] } |
Oops, something went wrong.