From e1b19ed033d4101f3591933ea191b3c47a38109d Mon Sep 17 00:00:00 2001 From: Peter Morgan Date: Wed, 21 Aug 2024 17:24:50 +0100 Subject: [PATCH] rustflags -> .cargo/config.toml --- .cargo/config.toml | 2 ++ Cargo.toml | 3 --- 2 files changed, 2 insertions(+), 3 deletions(-) create mode 100644 .cargo/config.toml diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..42bb101 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,2 @@ +[build] +rustflags = "" diff --git a/Cargo.toml b/Cargo.toml index 754c1c6..67bdc2d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,9 +6,6 @@ members = ["tansu-*"] edition = "2021" version = "0.1.0" -[build] -rustflags = "" - [workspace.dependencies] anyhow = "1.0.79" async-trait = "0.1.77"