mirror of
https://github.com/CodingIsOurPassion/CodingIsOurPassion.git
synced 2024-12-28 22:29:19 -06:00
fix(LakeWatchAPI): make nix flake play nice
This commit is contained in:
parent
faf05112d6
commit
37cc0f3c08
7
LakeWatchAPI/Cargo.lock
generated
7
LakeWatchAPI/Cargo.lock
generated
@ -2109,9 +2109,16 @@ dependencies = [
|
||||
"serde_json",
|
||||
"url",
|
||||
"utoipa",
|
||||
"utoipa-swagger-ui-vendored",
|
||||
"zip",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "utoipa-swagger-ui-vendored"
|
||||
version = "0.1.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c20d6689d3a5693eec4d21f6b9d7c54f37468b856da8e98a7bb316f7b32df6e3"
|
||||
|
||||
[[package]]
|
||||
name = "utoipauto"
|
||||
version = "0.1.11"
|
||||
|
@ -3,6 +3,7 @@ name = "lakewatch"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
license = "AGPLv3"
|
||||
authors = [ "Price Hiller <price@orion-technologies.io>" ]
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
@ -29,7 +30,7 @@ tracing-bunyan-formatter = "0.3.9"
|
||||
serde = { version = "1.0.203", features = ["derive"] }
|
||||
tokio = { version = "1.38.0", features = ["full"] }
|
||||
secrecy = { version = "0.8.0", features = ["serde"] }
|
||||
utoipa-swagger-ui = { version = "7.1.0", features = ["axum"]}
|
||||
utoipa-swagger-ui = { version = "7.1.0", features = ["axum", "vendored"]}
|
||||
utoipauto = "0.1.11"
|
||||
utoipa = "4.2.3"
|
||||
|
||||
|
@ -1,6 +1,20 @@
|
||||
[licenses]
|
||||
allow = [
|
||||
"MIT"
|
||||
"AGPL"
|
||||
"GPL"
|
||||
unlicensed = "deny"
|
||||
allow-osi-fsf-free = "either"
|
||||
copyleft = "allow"
|
||||
|
||||
# ring has a rather complicated license file, and unfortunately does not
|
||||
# provide an SPDX expression in the `license` toml
|
||||
[[licenses.clarify]]
|
||||
name = "ring"
|
||||
# SPDX considers OpenSSL to encompass both the OpenSSL and SSLeay licenses
|
||||
# https://spdx.org/licenses/OpenSSL.html
|
||||
# ISC - Both BoringSSL and ring use this for their new files
|
||||
# MIT - "Files in third_party/ have their own licenses, as described therein. The MIT
|
||||
# license, for third_party/fiat, which, unlike other third_party directories, is
|
||||
# compiled into non-test libraries, is included below."
|
||||
# OpenSSL - Obviously
|
||||
expression = "ISC AND MIT AND OpenSSL"
|
||||
license-files = [
|
||||
{ path = "LICENSE", hash = 0xbd0eed23 },
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user