Skip to content

Commit

Permalink
fix toml indent
Browse files Browse the repository at this point in the history
  • Loading branch information
keks committed Nov 11, 2024
1 parent 97bf4b0 commit e77f3a5
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 43 deletions.
78 changes: 39 additions & 39 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
[workspace]
members = [
"sys/hacl",
"sys/libjade",
"sys/platform",
"sys/pqclean",
"sys/lib25519",
"benchmarks",
"fuzz",
"libcrux-ml-kem",
"libcrux-ml-kem/fuzz",
"libcrux-sha3",
"libcrux-ml-dsa",
"libcrux-intrinsics",
"libcrux-kem",
"libcrux-hmac",
"libcrux-hkdf",
"libcrux-ecdh",
"libcrux-psq",
"macros",
"cavp",
"traits",
"sha2",
"ed25519",
"curve25519",
"sys/hacl",
"sys/libjade",
"sys/platform",
"sys/pqclean",
"sys/lib25519",
"benchmarks",
"fuzz",
"libcrux-ml-kem",
"libcrux-ml-kem/fuzz",
"libcrux-sha3",
"libcrux-ml-dsa",
"libcrux-intrinsics",
"libcrux-kem",
"libcrux-hmac",
"libcrux-hkdf",
"libcrux-ecdh",
"libcrux-psq",
"macros",
"cavp",
"traits",
"sha2",
"ed25519",
"curve25519",
]

[workspace.package]
Expand All @@ -49,15 +49,15 @@ readme.workspace = true
documentation = "https://docs.rs/libcrux/"
description = "The Formally Verified Cryptography Library"
exclude = [
"/tests",
"/specs",
"/proofs",
"/*.py",
"/wasm-demo",
"/fuzz",
"/git-hooks",
"/architecture",
"/libcrux.fst.config.json",
"/tests",
"/specs",
"/proofs",
"/*.py",
"/wasm-demo",
"/fuzz",
"/git-hooks",
"/architecture",
"/libcrux.fst.config.json",
]

[lib]
Expand Down Expand Up @@ -123,11 +123,11 @@ panic = "abort"

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = [
'cfg(hax)',
'cfg(eurydice)',
'cfg(doc_cfg)',
'cfg(libjade)',
'cfg(simd128)',
'cfg(simd256)',
'cfg(aes_ni)',
'cfg(hax)',
'cfg(eurydice)',
'cfg(doc_cfg)',
'cfg(libjade)',
'cfg(simd128)',
'cfg(simd256)',
'cfg(aes_ni)',
] }
2 changes: 1 addition & 1 deletion curve25519/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ hacl = ["dep:libcrux-sha2", "dep:libcrux-hacl-rs", "dep:libcrux-macros"]
[dependencies]
libcrux-hacl-rs = { version = "=0.0.2-beta.2", path = "../hacl-rs/", optional = true }
libcrux-sha2 = { version = "=0.0.2-beta.2", path = "../sha2", optional = true, features = [
"hacl",
"hacl",
] }
libcrux-macros = { version = "=0.0.2-beta.2", path = "../macros", optional = true }
2 changes: 1 addition & 1 deletion ed25519/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ hacl = ["dep:libcrux-sha2", "dep:libcrux-hacl-rs", "dep:libcrux-macros"]
[dependencies]
libcrux-hacl-rs = { version = "=0.0.2-beta.2", path = "../hacl-rs/", optional = true }
libcrux-sha2 = { version = "=0.0.2-beta.2", path = "../sha2", optional = true, features = [
"hacl",
"hacl",
] }
libcrux-macros = { version = "=0.0.2-beta.2", path = "../macros", optional = true }
2 changes: 1 addition & 1 deletion libcrux-ecdh/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ path = "src/ecdh.rs"
rand = { version = "0.8" }
libcrux-hacl = { version = "=0.0.2-beta.2", path = "../sys/hacl" }
libcrux-curve25519 = { version = "=0.0.2-beta.2", path = "../curve25519", features = [
"hacl",
"hacl",
] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion libcrux-hmac/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ hacl = ["dep:libcrux-sha2", "dep:libcrux-hacl-rs", "dep:libcrux-macros"]
[dependencies]
libcrux-hacl-rs = { version = "=0.0.2-beta.2", path = "../hacl-rs/", optional = true }
libcrux-sha2 = { version = "=0.0.2-beta.2", path = "../sha2", optional = true, features = [
"hacl",
"hacl",
] }
libcrux-macros = { version = "=0.0.2-beta.2", path = "../macros", optional = true }

0 comments on commit e77f3a5

Please sign in to comment.