Skip to content

Commit

Permalink
refactor: rename project to aer
Browse files Browse the repository at this point in the history
  • Loading branch information
AdmiringWorm committed Apr 4, 2021
1 parent 9e60981 commit 80bf812
Show file tree
Hide file tree
Showing 68 changed files with 1,297 additions and 925 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ jobs:
with:
name: ${{ matrix.os }}
path: |
target/release/pkg-upd
target/release/pkg-ver
target/release/pkg-web
target/release/aer
target/release/aer-ver
target/release/aer-web
target/release/*.bin
target/release/*.exe
- name: Test projects with all features
Expand Down
108 changes: 37 additions & 71 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,36 +7,26 @@
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'pkg-data'",
"name": "Debug executable 'aer'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=pkg-data"
],
"args": ["build", "--bin=aer", "--package=aer"],
"filter": {
"name": "pkg-data",
"kind": "lib"
"name": "aer",
"kind": "bin"
}
},
"args": [],
"args": ["aer_upd/test-data/deserialize-full.aer.toml"],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'pkg-license'",
"name": "Debug unit tests in executable 'aer'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=pkg-license"
],
"args": ["test", "--no-run", "--bin=aer", "--package=aer"],
"filter": {
"name": "pkg-license",
"kind": "lib"
"name": "aer",
"kind": "bin"
}
},
"args": [],
Expand All @@ -45,16 +35,11 @@
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'pkg-version'",
"name": "Debug unit tests in library 'aer_upd'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=pkg-version"
],
"args": ["test", "--no-run", "--lib", "--package=aer_upd"],
"filter": {
"name": "pkg-version",
"name": "aer_upd",
"kind": "lib"
}
},
Expand All @@ -64,16 +49,12 @@
{
"type": "lldb",
"request": "launch",
"name": "Debug example 'chocolatey'",
"name": "Debug unit tests in library 'aer_data'",
"cargo": {
"args": [
"build",
"--example=chocolatey",
"--package=pkg-version"
],
"args": ["test", "--no-run", "--lib", "--package=aer_data"],
"filter": {
"name": "chocolatey",
"kind": "example"
"name": "aer_data",
"kind": "lib"
}
},
"args": [],
Expand All @@ -82,17 +63,12 @@
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in example 'chocolatey'",
"name": "Debug unit tests in library 'aer_license'",
"cargo": {
"args": [
"test",
"--no-run",
"--example=chocolatey",
"--package=pkg-version"
],
"args": ["test", "--no-run", "--lib", "--package=aer_license"],
"filter": {
"name": "chocolatey",
"kind": "example"
"name": "aer_license",
"kind": "lib"
}
},
"args": [],
Expand All @@ -101,16 +77,11 @@
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'pkg-upd'",
"name": "Debug unit tests in library 'aer_version'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=pkg-upd"
],
"args": ["test", "--no-run", "--lib", "--package=aer_version"],
"filter": {
"name": "pkg-upd",
"name": "aer_version",
"kind": "lib"
}
},
Expand All @@ -120,16 +91,16 @@
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'pkg-upd'",
"name": "Debug example 'chocolatey'",
"cargo": {
"args": [
"build",
"--bin=pkg-upd",
"--package=pkg-upd"
"--example=chocolatey",
"--package=aer_version"
],
"filter": {
"name": "pkg-upd",
"kind": "bin"
"name": "chocolatey",
"kind": "example"
}
},
"args": [],
Expand All @@ -138,17 +109,17 @@
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'pkg-upd'",
"name": "Debug unit tests in example 'chocolatey'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=pkg-upd",
"--package=pkg-upd"
"--example=chocolatey",
"--package=aer_version"
],
"filter": {
"name": "pkg-upd",
"kind": "bin"
"name": "chocolatey",
"kind": "example"
}
},
"args": [],
Expand All @@ -157,21 +128,16 @@
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'pkg-web'",
"name": "Debug unit tests in library 'aer_web'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=pkg-web"
],
"args": ["test", "--no-run", "--lib", "--package=aer_web"],
"filter": {
"name": "pkg-web",
"name": "aer_web",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}
}
Loading

0 comments on commit 80bf812

Please sign in to comment.