mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
1.1.0 rc.15 dev post-release (#2271)
* versions in cargo.toml, descriptions etc * updated release checklist
This commit is contained in:
parent
6642139900
commit
86be081055
18
Cargo.toml
18
Cargo.toml
|
@ -76,17 +76,17 @@ sshkey-attest = { git = "https://github.com/kanidm/webauthn-rs.git", rev = "2218
|
||||||
# sshkey-attest = { path = "../webauthn-rs/sshkey-attest" }
|
# sshkey-attest = { path = "../webauthn-rs/sshkey-attest" }
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
kanidmd_core = { path = "./server/core" }
|
kanidmd_core = { path = "./server/core", version = "1.1.0-rc.15-dev" }
|
||||||
kanidmd_lib = { path = "./server/lib" }
|
kanidmd_lib = { path = "./server/lib", version = "1.1.0-rc.15-dev" }
|
||||||
kanidmd_lib_macros = { path = "./server/lib-macros" }
|
kanidmd_lib_macros = { path = "./server/lib-macros", version = "1.1.0-rc.15-dev" }
|
||||||
kanidmd_testkit = { path = "./server/testkit" }
|
kanidmd_testkit = { path = "./server/testkit", version = "1.1.0-rc.15-dev" }
|
||||||
kanidm_build_profiles = { path = "./libs/profiles", version = "1.1.0-rc.15-dev" }
|
kanidm_build_profiles = { path = "./libs/profiles", version = "1.1.0-rc.15-dev" }
|
||||||
kanidm_client = { path = "./libs/client", version = "1.1.0-rc.15-dev" }
|
kanidm_client = { path = "./libs/client", version = "1.1.0-rc.15-dev" }
|
||||||
kanidm_lib_crypto = { path = "./libs/crypto" }
|
kanidm_lib_crypto = { path = "./libs/crypto", version = "1.1.0-rc.15-dev" }
|
||||||
kanidm_lib_file_permissions = { path = "./libs/file_permissions" }
|
kanidm_lib_file_permissions = { path = "./libs/file_permissions", version = "1.1.0-rc.15-dev" }
|
||||||
kanidm_proto = { path = "./proto", version = "1.1.0-rc.15-dev" }
|
kanidm_proto = { path = "./proto", version = "1.1.0-rc.15-dev" }
|
||||||
kanidm_unix_int = { path = "./unix_integration" }
|
kanidm_unix_int = { path = "./unix_integration", version = "1.1.0-rc.15-dev" }
|
||||||
kanidm_utils_users = { path = "./libs/users" }
|
kanidm_utils_users = { path = "./libs/users", version = "1.1.0-rc.15-dev" }
|
||||||
|
|
||||||
serde_with = "3.4.0"
|
serde_with = "3.4.0"
|
||||||
argon2 = { version = "0.5.2", features = ["alloc"] }
|
argon2 = { version = "0.5.2", features = ["alloc"] }
|
||||||
|
@ -184,7 +184,7 @@ serde_cbor = { version = "0.12.0-dev", package = "serde_cbor_2" }
|
||||||
serde_json = "^1.0.107"
|
serde_json = "^1.0.107"
|
||||||
serde-wasm-bindgen = "0.5"
|
serde-wasm-bindgen = "0.5"
|
||||||
shellexpand = "^2.1.2"
|
shellexpand = "^2.1.2"
|
||||||
sketching = { path = "./libs/sketching" }
|
sketching = { path = "./libs/sketching", version = "1.1.0-rc.15-dev" }
|
||||||
smartstring = "^1.0.1"
|
smartstring = "^1.0.1"
|
||||||
smolset = "^1.3.1"
|
smolset = "^1.3.1"
|
||||||
sshkey-attest = "^0.5.0-dev"
|
sshkey-attest = "^0.5.0-dev"
|
||||||
|
|
|
@ -2,6 +2,11 @@
|
||||||
name = "kanidm_lib_crypto"
|
name = "kanidm_lib_crypto"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = { workspace = true }
|
edition = { workspace = true }
|
||||||
|
description = "Kanidm cryptographic functionality"
|
||||||
|
license = { workspace = true }
|
||||||
|
homepage = { workspace = true }
|
||||||
|
repository = { workspace = true }
|
||||||
|
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
tpm = ["dep:tss-esapi"]
|
tpm = ["dep:tss-esapi"]
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "sketching"
|
name = "sketching"
|
||||||
|
description = "Logging crate"
|
||||||
# We do not have tests in this pkg
|
# We do not have tests in this pkg
|
||||||
autotests = false
|
autotests = false
|
||||||
|
|
||||||
|
@ -19,5 +20,9 @@ doctest = false
|
||||||
num_enum = { workspace = true }
|
num_enum = { workspace = true }
|
||||||
tracing = { workspace = true, features = ["attributes"] }
|
tracing = { workspace = true, features = ["attributes"] }
|
||||||
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
||||||
tracing-forest = { workspace = true, features = ["uuid", "smallvec", "tokio", "env-filter"] }
|
tracing-forest = { workspace = true, features = [
|
||||||
|
"uuid",
|
||||||
|
"smallvec",
|
||||||
|
"tokio",
|
||||||
|
"env-filter",
|
||||||
|
] }
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "kanidm_utils_users"
|
name = "kanidm_utils_users"
|
||||||
|
description = "Kanidm utility crate"
|
||||||
version.workspace = true
|
version.workspace = true
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
rust-version.workspace = true
|
rust-version.workspace = true
|
||||||
|
|
|
@ -57,8 +57,13 @@ cargo install cargo-udeps
|
||||||
### Cargo publish
|
### Cargo publish
|
||||||
|
|
||||||
- [ ] publish `kanidm_proto`
|
- [ ] publish `kanidm_proto`
|
||||||
- [ ] publish `kanidmd/kanidm`
|
- [ ] publish `sketching`
|
||||||
|
<!-- - [ ] publish `kanidmd/kanidm` -->
|
||||||
|
- [ ] publish `kanidm_utils_users`
|
||||||
|
- [ ] publish `kanidm_lib_file_permissions`
|
||||||
- [ ] publish `kanidm_client`
|
- [ ] publish `kanidm_client`
|
||||||
|
- [ ] publish `kanidm_lib_crypto`
|
||||||
|
- [ ] publish `kanidm_build_profiles`
|
||||||
- [ ] publish `kanidm_tools`
|
- [ ] publish `kanidm_tools`
|
||||||
|
|
||||||
### Docker
|
### Docker
|
||||||
|
|
Loading…
Reference in a new issue