
[build]
rustflags = [
    "--cfg", "procmacro2_semver_exempt",
    "-C", "target-feature=+sse2,+aes",
]
 
rustdocflags = [
    "--cfg", "procmacro2_semver_exempt",
]

[target.aarch64-apple-darwin]
rustflags = [
    "--cfg", "procmacro2_semver_exempt",
    "-C", "target-feature=+sse2,+aes"
]

[target.aarch64-unknown-linux-gnu]
rustflags = [
    "--cfg", "procmacro2_semver_exempt",
]
linker = "aarch64-linux-gnu-gcc"

[target.aarch64-unknown-linux-musl]
linker = "aarch64-linux-gnu-gcc"
rustflags = ["--cfg", "procmacro2_semver_exempt", "-C", "target-feature=-crt-static", "-C", "link-arg=-lgcc"]

[target.armv7-unknown-linux-gnueabihf]
rustflags = [
    "--cfg", "procmacro2_semver_exempt",
]
linker = "arm-linux-gnueabihf-gcc"

[target.aarch64-linux-android]
rustflags = [
    "--cfg", "procmacro2_semver_exempt",
]

[target.aarch64-pc-windows-msvc]
rustflags = [
    "--cfg", "procmacro2_semver_exempt",
]

[target.wasm32-unknown-unknown]
rustflags = [
    "--cfg", "procmacro2_semver_exempt",
]